v/vlib/v/gen/native/tests/compare.vv

9 lines
79 B
V

fn main() {
a := 123
b := 456
for a < b {
println('a < b')
exit(0)
}
}