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 @@
: inf "SPAM\n" . recurse ;

View file

@ -0,0 +1 @@
: inf repeat "SPAM\n" . again ;

View file

@ -0,0 +1,3 @@
While 1
Disp "SPAM",i
End

View file

@ -0,0 +1 @@
while(true) <<<"SPAM">>>;

View file

@ -0,0 +1,3 @@
LOOP
PRINT "SPAM"
ENDLOOP

View file

@ -0,0 +1,3 @@
LOOP
PRINT("SPAM")
END LOOP

View file

@ -0,0 +1,5 @@
' FB 1.05.0
Do
Print "SPAM"
Loop

View file

@ -0,0 +1,5 @@
include "ConsoleWindow"
while 1
print "Spam"
wend

View file

@ -0,0 +1,4 @@
// not wise to run this!
while(1 > 0) => {^
'SPAM\r'
^}

View file

@ -0,0 +1 @@
while 1: print("SPAM")

View file

@ -0,0 +1,3 @@
repeat while TRUE
put "SPAM"
end repeat

View file

@ -0,0 +1,3 @@
repeat forever
put "SPAM" & return
end repeat

View file

@ -0,0 +1,2 @@
while (true):
traceln("SPAM")

View file

@ -0,0 +1,2 @@
while true:
echo "SPAM"

View file

@ -0,0 +1 @@
begin "SPAM" . again

View file

@ -0,0 +1,3 @@
while 1 do
puts(1,"SPAM\n")
end while

View file

@ -0,0 +1,3 @@
while true
see "Spam"
end

View file

@ -0,0 +1 @@
loop { say "SPAM!" };

View file

@ -0,0 +1,3 @@
while true {
print("SPAM");
}

View file

@ -0,0 +1,3 @@
do {
print("SPAM");
} while true;

View file

@ -0,0 +1,3 @@
for var b = true; b; b = true {
printf("SPAM\n");
}

View file

@ -0,0 +1,3 @@
while true {
println("SPAM")
}

View file

@ -0,0 +1,3 @@
while true
out "SPAM" endl console
end while

View file

@ -0,0 +1,2 @@
repeat :forever
prn "spam"

View file

@ -0,0 +1 @@
recurse("SPAM")