1
0
Fork 0
forked from fun/fun
fun/src/vm/logic/not.c

7 lines
147 B
C
Raw Normal View History

case OP_NOT: {
Value v = pop_value(vm);
int res = !value_is_truthy(&v);
free_value(v);
push_value(vm, make_int(res));
break;
}