Skip to content

Instantly share code, notes, and snippets.

Created February 6, 2018 08:52
Show Gist options
  • Save anonymous/c62d224708f31e32ef6eafb54b396172 to your computer and use it in GitHub Desktop.
Save anonymous/c62d224708f31e32ef6eafb54b396172 to your computer and use it in GitHub Desktop.
var x = 1
proc incX() =
x.inc()
proc incX2(index: var int) =
index.inc()
incX()
x.incX2
echo x
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment