This commit is contained in:
2026-06-11 11:57:17 -06:00
parent 8650a71f67
commit 1ed9eba90a
5 changed files with 19 additions and 1 deletions

8
test/tail.ssa Normal file
View File

@@ -0,0 +1,8 @@
function w $factorial (w %n, w %acc) {
@start
jnz %n, @z, @nz
@z
ret %acc
@nz
tail
}