1
0
Fork 0
forked from fun/fun
fun/src/vm_case_or.c

9 lines
216 B
C
Raw Normal View History

case OP_OR: {
Value b = pop_value(vm);
Value a = pop_value(vm);
int res = value_is_truthy(&a) || value_is_truthy(&b);
free_value(a);
free_value(b);
push_value(vm, make_int(res));
break;
}