Skip to content

Instantly share code, notes, and snippets.

@robsimmons
Created November 22, 2011 13:31
Show Gist options
  • Save robsimmons/1385663 to your computer and use it in GitHub Desktop.
Save robsimmons/1385663 to your computer and use it in GitHub Desktop.
structure A =
struct
val say = fn () => print "A\n"
end
structure B =
struct
val say = fn () => print "B\n"
end
structure C =
struct
open A
open B
val () = say ()
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment