1 2 3 4 5 6 7 8 9
main :: () -> void { a := 2; b := a; c : u64 = 5; if a == b print_u64 2; else print_u64 c; };