mirror of
https://github.com/anoma/juvix.git
synced 2024-12-12 14:28:08 +03:00
21 lines
187 B
Plaintext
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;
|
|
}
|