Releases: shockerli/spiker
Releases · shockerli/spiker
v0.0.3
v0.0.2
- support custom function declare and call
sum = (a, b) -> a + b;
export(sum(1, 2)); # 3
pow2 = x -> x ** 2;
export(pow2(5)); # 25
max = (a, b) -> {
if (a > b) {
return a;
} else {
return b;
}
};
export(max(1, 2)); # 2
- rewrite builtin function
- fix while/if statements break/continue
- improve export()