aboutsummaryrefslogtreecommitdiffstats
path: root/main.sy
blob: e7c344de508711a66252b5350a2c2daee13130e8 (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()
}