diff options
Diffstat (limited to 'tests/tnewuns.nim')
-rwxr-xr-x | tests/tnewuns.nim | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/tests/tnewuns.nim b/tests/tnewuns.nim new file mode 100755 index 000000000..5181e467c --- /dev/null +++ b/tests/tnewuns.nim @@ -0,0 +1,12 @@ +# test the new unsigned operations: + +import + strutils + +var + x, y: int + +x = 1 +y = high(int) + +writeln(stdout, $ ( x +% y ) ) |