post-recording commit

This commit is contained in:
2023-05-17 09:15:14 +01:00
parent 330ddbe399
commit df429c4770
8 changed files with 10 additions and 32 deletions

View File

@@ -11,16 +11,4 @@ export main := do{
|> list::reduce 0 (a b) => a + b;
cps print $ to_string sum ++ "\n";
0
}
--[
export main := do{
let n = 1;
let acc = 1;
loop r on (n acc) with (
if n == 5
then print acc
else r (n + 1) (acc * 2)
)
}
]--
}