1
1
mirror of https://github.com/anoma/juvix.git synced 2024-12-14 08:27:03 +03:00
juvix/tests/Asm/positive/test005.jva

21 lines
187 B
Plaintext
Raw Normal View History

2022-09-29 18:44:55 +03:00
-- 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;
}