about summary refs log tree commit diff stats
path: root/tutorial/task8a.mu
blob: bba989f7b011f4db3859d9e1a372d6d2e3045904 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
fn f a: int {
}

fn main {
  f 0
  var r/eax: int <- copy 3
  f r
  var m: int
  f m
}