When I try to make some print bool example such as below, it needs to execute zext i1 %cmp to i32 instruction.
int a = 10, b = 20;
print(a < b)
But we do not support zext instruction, so it raises unsupported error.
Can I assume there is no print bool type?