Add tasks for all the new languages

This commit is contained in:
Tina Müller 2016-12-05 23:44:36 +01:00
parent 9dc3c2bb62
commit bba7bfd280
13208 changed files with 134745 additions and 0 deletions

View file

@ -0,0 +1 @@
@fac 10

View file

@ -0,0 +1 @@
!#~F 10

View file

@ -0,0 +1,3 @@
!/^* @to 10
; or
@prod @to 10

View file

@ -0,0 +1,6 @@
~!10 &n [
@var r 1
@for x to n
:!*r x
r
]

View file

@ -0,0 +1,14 @@
@let {
fac &{fac n}?{
<n 2 n
*n !fac -n 1
}
; memoized
facM @mem &n?{
<n 2 n
*n !facM -n 1
}
[[!fac 10 !facM 10]]
}