test :: ()->void;

main : test : () -> void {
  a := 10;
  while a > 0 {
    print_u64 1;
    a = a -1;
  }
};