summary refs log tree commit diff stats
path: root/tests/toverlop.nim
diff options
context:
space:
mode:
Diffstat (limited to 'tests/toverlop.nim')
-rwxr-xr-xtests/toverlop.nim10
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