Skip to content

Instantly share code, notes, and snippets.

@zakki
Created January 4, 2011 03:45
Show Gist options
  • Select an option

  • Save zakki/764361 to your computer and use it in GitHub Desktop.

Select an option

Save zakki/764361 to your computer and use it in GitHub Desktop.
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