t8821.nim 126 B

123456789
  1. proc isInt32(i: int): bool =
  2. case i
  3. of 1 .. 70000:
  4. return true
  5. else:
  6. return false
  7. doAssert isInt32(1) == true