YAPC::EU 2018 Glasgow Update!

This commit is contained in:
Ingy döt Net 2018-08-17 15:15:24 +01:00
parent 22f33d4004
commit 4e2d22a71d
1170 changed files with 15042 additions and 3047 deletions

View file

@ -1,6 +1,6 @@
import extensions.
ackermann = (:m:n)
ackermann(m,n)
[
if((n < 0)||(m < 0))
[
@ -14,9 +14,9 @@ ackermann = (:m:n)
0 [ ^ackermann(m - 1,1) ];
! [ ^ackermann(m - 1,ackermann(m,n-1)) ]
]
].
]
public program =
public program
[
0 to:3 do(:i)
[
@ -26,5 +26,5 @@ public program =
]
].
console readChar.
].
console readChar
]