blob: 2e21a69907c3cde357510c5f6e58c94c8fffb2b5 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
use other
use third
start :: fn {
other.f()
print other.g()
42 <=> other.g()
other.g() <=> 42
other.third.print_the_third()
third.print_the_third()
third.main.other.third.main.third.print_the_third()
}
|