Y
Hacker News
new
|
ask
|
show
|
jobs
by
dom96
4398 days ago
Here is a Nimrod version which does the same:
proc `+`(x, y: int): int = result = x result.inc(y) result.inc echo(2 + 2) # => 5