Comment on Write a program that makes 2 + 2 = 5parentComments−dom9612yHere is a Nimrod version which does the same: proc `+`(x, y: int): int = result = x result.inc(y) result.inc echo(2 + 2) # => 5
Comments
Here is a Nimrod version which does the same: