Files
Nim/tests/compile/tnewuns.nim
2013-03-16 23:53:07 +01:00

13 lines
137 B
Nim

# test the new unsigned operations:
import
strutils
var
x, y: int
x = 1
y = high(int)
writeln(stdout, $ ( x +% y ) )