tnewuns.nim 127 B

12345678910111213
  1. # test the new unsigned operations:
  2. import
  3. strutils
  4. var
  5. x, y: int
  6. x = 1
  7. y = high(int)
  8. writeLine(stdout, $ ( x +% y ) )