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 @@
Disp "Goodbye, World!"

View file

@ -0,0 +1,3 @@
.......
PRINT("Goodbye, World!";)
.......

View file

@ -0,0 +1,3 @@
(begin
(write "GoodBye, World")
(write "Next on same line"))

View file

@ -0,0 +1 @@
TYPE "Goodbye, World!"

View file

@ -0,0 +1,4 @@
' FB 1.05.0 Win64
Print "Goodbye, World!"; '' the trailing semi-colon suppresses the new line
Sleep

View file

@ -0,0 +1,3 @@
?? "Goodbye, world"
or
QQout( "Goodbye, world" )

View file

@ -0,0 +1,6 @@
class Main {
function void main () {
do Output.printString("Goodbye, World!");und
return;
}
}

View file

@ -0,0 +1 @@
(io:format "Goodbye, World")

View file

@ -0,0 +1 @@
stdout("Goodbye, World!")

View file

@ -0,0 +1 @@
stdout.write "Goodbye, World!"

View file

@ -0,0 +1 @@
"Goodbye, World!" print

View file

@ -0,0 +1,7 @@
module helloworld_noln;
extern printf;
@Integer main [
printf("Goodbye, World!");
return 0;
]

View file

@ -0,0 +1 @@
puts(1,"Goodbye, World!")

View file

@ -0,0 +1 @@
(pr "Hello World!");

View file

@ -0,0 +1,6 @@
class HelloWorld
**Prints "Goodbye, World!" without a new line**
on start
print "Goodbye, World!" without new line

View file

@ -0,0 +1 @@
prin "Goodbye, World!"

View file

@ -0,0 +1 @@
see "Goodbye, World!"

View file

@ -0,0 +1 @@
print "Goodbye, World!";

View file

@ -0,0 +1 @@
"%s".printf("Goodbye, World!");

View file

@ -0,0 +1 @@
print("Goodbye, World!", terminator: "")

View file

@ -0,0 +1 @@
print("Goodbye, World!")

View file

@ -0,0 +1 @@
out "goodbye world!" console

View file

@ -0,0 +1 @@
System.write("Goodbye, World!")

View file

@ -0,0 +1 @@
(display "Goodbye, World!")

View file

@ -0,0 +1 @@
(princ "Goodbye, World!")

View file

@ -0,0 +1,2 @@
$ jq -n -j '"Goodbye, World!"'
Goodbye, World!$

View file

@ -0,0 +1,2 @@
$ echo '"Goodbye, World!"' | jq -j
Goodbye, World!$