1 2 3 4 5 6 7 8
import zed::bar; mod zed { fn bar() { #debug("bar"); } } fn main(args: ~[str]) { let zed = 42; bar(); }