# 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