mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-30 01:44:37 +00:00
13 lines
127 B
Nim
13 lines
127 B
Nim
# test the new unsigned operations:
|
|
|
|
import
|
|
strutils
|
|
|
|
var
|
|
x, y: int
|
|
|
|
x = 1
|
|
y = high(int)
|
|
|
|
writeLine(stdout, $ ( x +% y ) )
|