Halcyon/demo.lang

10 lines
91 B
Plaintext
Raw Normal View History

2024-10-17 11:43:43 -05:00
i := 0x0;
2024-10-15 11:20:35 -05:00
2024-10-17 11:43:43 -05:00
if i > 10 {
print "a";
} else if i > 5 {
print "b";
} else {
print "c";
2024-10-15 11:20:35 -05:00
}