summaryrefslogtreecommitdiff
path: root/test/main.felan
blob: 387bd90b1d1bb2cb49603c95afc8e65a51b89c92 (plain)
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;
  }
};