1
1
mirror of https://github.com/anoma/juvix.git synced 2024-12-12 14:28:08 +03:00
juvix/tests/Asm/positive/test005.jva
2022-09-29 17:44:55 +02:00

21 lines
187 B
Plaintext

-- Tracing IO
function main () {
push 1;
trace;
push 2;
trace;
trace;
push "seven";
trace;
pop;
pop;
pop;
push unit;
trace;
pop;
push void;
trace;
ret;
}