15 lines
184 B
Text
15 lines
184 B
Text
|
export function w $sayhi(w %char) {
|
||
|
@start
|
||
|
call $putchar(w 72)
|
||
|
call $putchar(w 105)
|
||
|
call $putchar(w %char)
|
||
|
ret 5
|
||
|
}
|
||
|
|
||
|
export function $main() {
|
||
|
@start
|
||
|
call $sayhi(w 74)
|
||
|
ret
|
||
|
}
|
||
|
|