Skip to content

Instantly share code, notes, and snippets.

@fredreichbier
Created November 26, 2011 17:19
Show Gist options
  • Select an option

  • Save fredreichbier/1395995 to your computer and use it in GitHub Desktop.

Select an option

Save fredreichbier/1395995 to your computer and use it in GitHub Desktop.
import m2
global := "m1"
main: func {
global println()
testm2()
}
import m1
global := "m2"
testm2: func {
global println()
}
% ./m1
m2
m1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment