1 2 3 4 5 6 7 8 9
test :: ()->void; main : test : () -> void { a := 10; while a > 0 { print_u64 1; a = a -1; } };