Created
November 26, 2011 17:19
-
-
Save fredreichbier/1395995 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
| import m2 | |
| global := "m1" | |
| main: func { | |
| global println() | |
| testm2() | |
| } |
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
| import m1 | |
| global := "m2" | |
| testm2: func { | |
| global println() | |
| } |
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
| % ./m1 | |
| m2 | |
| m1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment