mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-30 09:54:49 +00:00
8 lines
83 B
Nim
8 lines
83 B
Nim
|
|
{.overflowchecks: on.}
|
|
|
|
converter uglyToBool*(x: int): bool =
|
|
result = x != 0
|
|
|
|
|