summaryrefslogtreecommitdiff
path: root/tigrou/who-am-i/who-am-i.tig
blob: 0dbb64602e93e656c37c8ad8c7df40d871c48572 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
let
  import "who-am-i.tih"
in
  print("Expected : TIGROS\ngot      : ");
  who_am_i(2);
  print("\n");

  print("Expected : TIGROU\ngot      : ");
  who_am_i(3);
  print("\n");

  print("Expected : TIGROU\ngot      : ");
  who_am_i(5);
  print("\n");

  print("Expected : TIGER\ngot      : ");
  who_am_i(42)
end