mu/tutorial/task8c.mu

8 lines
69 B
Forth

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