diff options
Diffstat (limited to 'tests/misc/tnewuns.nim')
-rw-r--r-- | tests/misc/tnewuns.nim | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/tests/misc/tnewuns.nim b/tests/misc/tnewuns.nim index 267c73f5b..d6bae4fb1 100644 --- a/tests/misc/tnewuns.nim +++ b/tests/misc/tnewuns.nim @@ -1,12 +1,12 @@ -# test the new unsigned operations: - -import - strutils - -var - x, y: int - -x = 1 -y = high(int) - -writeLine(stdout, $ ( x +% y ) ) +# test the new unsigned operations: + +import + strutils + +var + x, y: int + +x = 1 +y = high(int) + +writeLine(stdout, $ ( x +% y ) ) |