fix other mandelbrot variants
[mu.git] / tutorial / task5.mu
blobeed8f03c76fe8bec4761648efc00822b8b33d13f
1 fn foo -> _/eax: int {
2   var x: int
3   # statement 1: store 3 in x
4   # statement 2: define a new variable 'y' in register eax and store 4 in it
5   # statement 3: add y to x, storing the result in x
6   return x
9 fn test-foo {
10   var result/eax: int <- foo
11   check-ints-equal result, 7, "F - foo should return 7, but didn't"
14 fn main {