added function pointers

This commit is contained in:
igor
2026-02-18 10:59:37 +01:00
parent 28bc0e3842
commit 8bb292f49b
4 changed files with 70 additions and 4 deletions

11
tests/word_ptr_jmp.sl Normal file
View File

@@ -0,0 +1,11 @@
import stdlib/stdlib.sl
import stdlib/io.sl
word target
"via word ptr\n" puts
end
word main
&target
jmp
end