DEBSOURCES
Skip Quicknav
sources / nim / 2.2.0-1 / tests / js / t8821.nim
123456789
proc isInt32(i: int): bool = case i of 1 .. 70000: return true else: return false doAssert isInt32(1) == true