mu/tutorial/task8b.mu

9 lines
106 B
Forth

fn f -> _/eax: int {
var result/ecx: int <- copy 0
return result
}
fn main {
var x/eax: int <- f
}