Created
January 4, 2011 03:45
-
-
Save zakki/764361 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
| cmd1 1 | |
| cmd2 2 | |
| stop | |
| #deffunc cmd1 int a, local b | |
| b = 10 | |
| mes "1->" + a + "/" + b | |
| goto *COMMON | |
| #deffunc cmd2 int a, local c | |
| c = 20 | |
| mes "2->" + a + "/" + c | |
| goto *COMMON | |
| *COMMON | |
| mes "common->" + a + "/" + b + "/" + c | |
| return |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment