summary refs log tree commit diff stats
path: root/tests/accept/run/toverlop.nim
blob: f11275644b9ca4019936bf0d6489933cef7b38fa (plain) (blame)
1
2
3
4
5
6
7
8
9
10
# 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