Skip to content

Instantly share code, notes, and snippets.

@zah
Created September 1, 2011 12:12
Show Gist options
  • Select an option

  • Save zah/1186048 to your computer and use it in GitHub Desktop.

Select an option

Save zah/1186048 to your computer and use it in GitHub Desktop.
proc foo(this: var TBar) =
barMethod(10) # the compiler tries both this.barMethod(10) and just barMethod(10)
a = 340 # the compiler tries both this.a = 340 and assignment to global a = 340
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment