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,5 @@
integer i = 0
while 1 do
?i
i += 1
end while

View file

@ -0,0 +1,5 @@
atom a = 0
while 1 do
?a
a += 1
end while

View file

@ -0,0 +1,6 @@
include bigatom.e
bigatom b = ba_new(0)
while 1 do
ba_printf(1,"%B\n",b)
b = ba_add(b,1)
end while