Skip to content
lenanya edited this page Jan 5, 2025 · 1 revision

useage

call <label>;

execute a different block

example

main:
    call otherblock;

otherblock:
    push "hi";
    print;

// this will print hi
Clone this wiki locally