1
1
mirror of https://github.com/anoma/juvix.git synced 2024-12-15 01:52:11 +03:00
juvix/tests/Asm/positive/test001.jva

21 lines
183 B
Plaintext
Raw Normal View History

2022-09-29 18:44:55 +03:00
-- Arithmetic opcodes
function main () {
push 12;
push 5;
push 3;
push 2;
mul;
add;
push 15;
sub;
push 9;
div;
push 7;
mul;
push 25;
sub;
mod;
ret;
}