diff options
Diffstat (limited to 'tests/toverlop.nim')
-rwxr-xr-x | tests/toverlop.nim | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/tests/toverlop.nim b/tests/toverlop.nim deleted file mode 100755 index f11275644..000000000 --- a/tests/toverlop.nim +++ /dev/null @@ -1,10 +0,0 @@ -# Test operator overloading - -proc `%` (a, b: int): int = - return a mod b - -var x, y: int -x = 15 -y = 6 -write(stdout, x % y) -#OUT 3 |