1 2 3 4 5 6 7 8
import spam::{ham, eggs}; mod spam { fn ham() { } fn eggs() { } } fn main() { ham(); eggs(); }