Add tasks for all the new languages
This commit is contained in:
parent
9dc3c2bb62
commit
bba7bfd280
13208 changed files with 134745 additions and 0 deletions
|
|
@ -0,0 +1 @@
|
|||
Disp "Goodbye, World!"
|
||||
|
|
@ -0,0 +1,3 @@
|
|||
.......
|
||||
PRINT("Goodbye, World!";)
|
||||
.......
|
||||
|
|
@ -0,0 +1,3 @@
|
|||
(begin
|
||||
(write "GoodBye, World")
|
||||
(write "Next on same line"))
|
||||
|
|
@ -0,0 +1 @@
|
|||
TYPE "Goodbye, World!"
|
||||
|
|
@ -0,0 +1,4 @@
|
|||
' FB 1.05.0 Win64
|
||||
|
||||
Print "Goodbye, World!"; '' the trailing semi-colon suppresses the new line
|
||||
Sleep
|
||||
|
|
@ -0,0 +1,3 @@
|
|||
?? "Goodbye, world"
|
||||
or
|
||||
QQout( "Goodbye, world" )
|
||||
|
|
@ -0,0 +1,6 @@
|
|||
class Main {
|
||||
function void main () {
|
||||
do Output.printString("Goodbye, World!");und
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1 @@
|
|||
(io:format "Goodbye, World")
|
||||
|
|
@ -0,0 +1 @@
|
|||
stdout("Goodbye, World!")
|
||||
|
|
@ -0,0 +1 @@
|
|||
stdout.write "Goodbye, World!"
|
||||
|
|
@ -0,0 +1 @@
|
|||
"Goodbye, World!" print
|
||||
|
|
@ -0,0 +1,7 @@
|
|||
module helloworld_noln;
|
||||
extern printf;
|
||||
|
||||
@Integer main [
|
||||
printf("Goodbye, World!");
|
||||
return 0;
|
||||
]
|
||||
|
|
@ -0,0 +1 @@
|
|||
puts(1,"Goodbye, World!")
|
||||
|
|
@ -0,0 +1 @@
|
|||
(pr "Hello World!");
|
||||
|
|
@ -0,0 +1,6 @@
|
|||
class HelloWorld
|
||||
**Prints "Goodbye, World!" without a new line**
|
||||
|
||||
on start
|
||||
|
||||
print "Goodbye, World!" without new line
|
||||
|
|
@ -0,0 +1 @@
|
|||
prin "Goodbye, World!"
|
||||
|
|
@ -0,0 +1 @@
|
|||
see "Goodbye, World!"
|
||||
|
|
@ -0,0 +1 @@
|
|||
print "Goodbye, World!";
|
||||
|
|
@ -0,0 +1 @@
|
|||
"%s".printf("Goodbye, World!");
|
||||
|
|
@ -0,0 +1 @@
|
|||
print("Goodbye, World!", terminator: "")
|
||||
|
|
@ -0,0 +1 @@
|
|||
print("Goodbye, World!")
|
||||
|
|
@ -0,0 +1 @@
|
|||
out "goodbye world!" console
|
||||
|
|
@ -0,0 +1 @@
|
|||
System.write("Goodbye, World!")
|
||||
|
|
@ -0,0 +1 @@
|
|||
(display "Goodbye, World!")
|
||||
|
|
@ -0,0 +1 @@
|
|||
(princ "Goodbye, World!")
|
||||
|
|
@ -0,0 +1,2 @@
|
|||
$ jq -n -j '"Goodbye, World!"'
|
||||
Goodbye, World!$
|
||||
|
|
@ -0,0 +1,2 @@
|
|||
$ echo '"Goodbye, World!"' | jq -j
|
||||
Goodbye, World!$
|
||||
Loading…
Add table
Add a link
Reference in a new issue