aboutsummaryrefslogtreecommitdiffstats
path: root/main.sy
blob: 96e055d278b45025da3726acc604f1b5f8cc5268 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
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()
}