repo.or.cz
/
mu.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
fix other mandelbrot variants
[mu.git]
/
tutorial
/
task4.mu
blob
786219cf845c94c5e49c9edb5b50005c34c55bb5
1
fn the-answer -> _/eax: int {
2
var result/eax: int <- copy 0
3
# insert your statement below {
4
5
# }
6
return result
7
}
8
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"
12
}
13
14
fn main {
15
}