summary refs log tree commit diff stats
path: root/tests/js/t8821.nim
blob: 38c88efa86b73c348045bb14b779ac6b422415e2 (plain) (blame)
1
2
3
4
5
6
7
8
9
proc isInt32(i: int): bool =
  case i 
  of 1 .. 70000:
    return true
  else:
    return false

doAssert isInt32(1) == true