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