Skip to content

Instantly share code, notes, and snippets.

@ReneSac

ReneSac/inc.nim Secret

Last active August 29, 2015 13:57
Show Gist options
  • Save ReneSac/681bc1485ed2ccde6ecb to your computer and use it in GitHub Desktop.
Save ReneSac/681bc1485ed2ccde6ecb to your computer and use it in GitHub Desktop.
proc myinc(x: var int):int {.discardable.}= inc(x); return x
template `++`*(x: var int):int = myinc(x)#; echo x
var x = 2
++x
echo(++x*2) # echos 8 :D
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment