Created
September 1, 2011 12:12
-
-
Save zah/1186048 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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