fasto unzipped

This commit is contained in:
NikolajDanger
2022-05-04 10:40:19 +02:00
commit 642fcbd636
117 changed files with 11962 additions and 0 deletions

View File

@ -0,0 +1,9 @@
fun int f(int x, int y) =
(x + 2) * (y - 2)
fun int main() =
let a = read(int) in
let b = let x = a in
let y = 2 in
(x + 2) * (y - 2)
in write(b)