Update all new Tasks

This commit is contained in:
Ingy döt Net 2015-02-20 09:02:09 -05:00
parent 00a190b0a6
commit 91df62d461
5697 changed files with 93386 additions and 804 deletions

View file

@ -0,0 +1 @@
\ ->

View file

@ -0,0 +1 @@
\

View file

@ -0,0 +1 @@
->

View file

@ -0,0 +1 @@
\x y -> x + y

View file

@ -0,0 +1 @@
\x -> \y -> x + y

View file

@ -0,0 +1,13 @@
procedure main(A)
add2 := addN(2)
write("add2(7) = ",add2(7))
write("add2(1) = ",add2(1))
end
procedure addN(n)
return makeProc{ repeat { (x := (x@&source)[1], x +:= n) } }
end
procedure makeProc(A)
return (@A[1], A[1])
end