fix other mandelbrot variants
[mu.git] / tutorial / task4.mu
blob786219cf845c94c5e49c9edb5b50005c34c55bb5
1 fn the-answer -> _/eax: int {
2   var result/eax: int <- copy 0
3   # insert your statement below {
5   # }
6   return result
9 fn test-the-answer {
10   var result/eax: int <- the-answer
11   check-ints-equal result, 0x2a, "F - the-answer should return 42, but didn't"
14 fn main {