2cdfe35e7 ^
405b86068
8b2a9401a ^
1 2 3 4
5 6
7
8 9 10 11 12 13 14
15 16
discard """ file: "toverlop.nim" output: "3" """ # 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