1
1
mirror of https://github.com/anoma/juvix.git synced 2024-12-12 14:28:08 +03:00
juvix/tests/Asm/positive/test036.jva
Łukasz Czajka 8e5f45f16f
Require semicolon to separate case/if branches in JuvixAsm syntax (#2574)
This makes the syntax more uniform. It was especially confusing with
nested branching, where some closing braces had to and others couldn't
be followed by a semicolon. Now all have to be followed by a semicolon
(except function ending braces).
2024-01-11 09:19:36 +00:00

117 lines
1.7 KiB
Plaintext

-- streams without memoization
type stream {
cons : integer -> (unit -> stream) -> stream;
}
function force(f : unit -> stream) : stream {
push unit;
push f;
tcall $ 1;
}
function filter(f : integer -> bool, s : unit -> stream, unit) : stream {
push s;
call force;
tsave s1 {
push s1.cons[0];
push f;
call $ 1;
br {
true: {
push s1.cons[1];
push f;
calloc filter 2;
push s1.cons[0];
alloc cons;
ret;
};
false: {
push unit;
push s1.cons[1];
push f;
tcall filter;
};
};
};
}
function nth(n : integer, s : unit -> stream) : integer {
push s;
call force;
tsave s1 {
push n;
push 0;
eq;
br {
true: { push s1.cons[0]; ret; };
false: {
push s1.cons[1];
push 1;
push n;
sub;
tcall nth;
};
};
};
}
function numbers(n : integer, unit) : stream {
push n;
push 1;
add;
calloc numbers 1;
push n;
alloc cons;
ret;
}
function indivisible(n : integer, m : integer) : bool {
push n;
push m;
mod;
push 0;
eq;
br {
true: { push false; ret; };
false: { push true; ret; };
};
}
function eratostenes(s : unit -> stream, unit) : stream {
push s;
call force;
tsave s1 {
push s1.cons[1];
push s1.cons[0];
calloc indivisible 1;
calloc filter 2;
calloc eratostenes 1;
push s1.cons[0];
alloc cons;
ret;
};
}
function primes() : unit -> stream {
push 2;
calloc numbers 1;
calloc eratostenes 1;
ret;
}
function main() {
call primes;
push 10;
call nth;
trace;
pop;
call primes;
push 50;
call nth;
trace;
pop;
push void;
ret;
}