blob: fa275e417b7054f655c786f850b25ecde5bc1594 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
main :: () -> void {
a := 2.3;
a /= 2.5;
print_u64 (if a == 1.15
1
else
2);
// test(u64,i64);
};
/*
test :: (from:type, to:type) -> void {
if from == to
print_u64 1234;
else
print_u64 4321;
};
*/
|