mirror of
https://github.com/anoma/juvix.git
synced 2024-12-14 17:32:00 +03:00
8 lines
79 B
Plaintext
8 lines
79 B
Plaintext
|
-- wrong stack height on exit
|
||
|
|
||
|
function main () {
|
||
|
push 1;
|
||
|
push 2;
|
||
|
ret;
|
||
|
}
|