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 @@
"Hello world!\n" . bye

View file

@ -0,0 +1 @@
echo["Hello, World!"]

View file

@ -0,0 +1 @@
(puts "Hello world!")

View file

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

View file

@ -0,0 +1 @@
Disp "Hello world!",i

View file

@ -0,0 +1 @@
display "Hello world!"

View file

@ -0,0 +1,3 @@
const hello = "Hello world!\n"
print(hello)

View file

@ -0,0 +1 @@
<<< "Hello world!">>>;

View file

@ -0,0 +1 @@
PRINT "Hello world!"

View file

@ -0,0 +1 @@
puts "Hello world!"

View file

@ -0,0 +1,29 @@
0 111 10
0 15 11
0 15 12
0 31 13
0 47 14
0 59 15
0 125 16
0 3 17
0 0 18
0 63 19
0 15 20
0 12 21
0 36 22
0 31 23
0 17 24
0 500 3
0 10 2
0 15 5
60 4
2 2 1
80 1
72 3
30 2
31 5
62 5
61 4
64

View file

@ -0,0 +1,9 @@
PROGRAM HELLOWORLD;
BEGIN
WRITE_TEXT(0,160,100,4,"HELLO WORLD!");
LOOP
FRAME;
END
END

View file

@ -0,0 +1 @@
OUTPUT('Hello world!');

View file

@ -0,0 +1,33 @@
[ Print HELLO WORLD ]
[ A program for the EDSAC ]
[ Works with Initial Orders 2 ]
T64K [ Set load point: address 64 ]
GK [ Set base address ]
O13@ [ Each O order outputs one ]
O14@ [ character. The numerical ]
O15@ [ parameter gives the offset ]
O16@ [ (from the base address) where ]
O17@ [ the character to print is ]
O18@ [ stored ]
O19@
O20@
O21@
O22@
O23@
O24@
ZF [ Stop ]
*F [ Shift to print letters ]
HF [ Character literals ]
EF
LF
LF
OF
!F [ Space character ]
WF
OF
RF
LF
DF
EZPF [ Start program beginning at
the load point ]

View file

@ -0,0 +1,5 @@
! Hello World in ERRE language
PROGRAM HELLO
BEGIN
PRINT("Hello world!")
END PROGRAM

View file

@ -0,0 +1 @@
(display "Hello world!" "color:blue")

View file

@ -0,0 +1,3 @@
(define $main
(lambda [$argv]
(write-string "Hello world!\n")))

View file

@ -0,0 +1 @@
main = text "Goodbye World!"

View file

@ -0,0 +1 @@
TYPE "Hello, world" !

View file

@ -0,0 +1 @@
PRINT "Hello world!"

View file

@ -0,0 +1,16 @@
'FreeBASIC Hello-fb0.bas May 2015
'
Screen 0 'open text window
Print "Hello world"
Print "Enter any key to go the graphics screen"
sleep
screen 18 'Screen 18 Resolution 640x480 with at least 256 colors
locate 10,10
Print "Hello world!"
locate 20,10
Print "Enter any key to exit"
sleep
End

View file

@ -0,0 +1 @@
println( 'Hello world!' )

View file

@ -0,0 +1 @@
PRINT "Hello World"

View file

@ -0,0 +1 @@
PRINT("Hello world!");

View file

@ -0,0 +1 @@
<?hh echo 'Hello world!'; ?>

View file

@ -0,0 +1 @@
? "Hello world!"

View file

@ -0,0 +1 @@
~& "Hello world!" ~

View file

@ -0,0 +1 @@
(print "Hello world!")

View file

@ -0,0 +1,3 @@
software {
print("Hello World!")
}

View file

@ -0,0 +1,7 @@
class Main {
function void main () {
do Output.printString("Hello world!");
do Output.println();
return;
}
}

View file

@ -0,0 +1 @@
"Hello world!" say

View file

@ -0,0 +1,6 @@
.orig x3000
LEA R0, hello ; R0 = &hello
TRAP x22 ; PUTS (print char array at addr in R0)
HALT
hello .stringz "Hello World!"
.end

View file

@ -0,0 +1,10 @@
.orig x3000
LEA R1, hello ; R1 = &hello
TOP LDR R0, R1, #0 ; R0 = R1[0]
BRz END ; if R0 is string terminator (x0000) go to END
TRAP x21 ; else OUT (write char in R0)
ADD R1, R1, #1 ; increment R1
BR TOP ; go to TOP
END HALT
hello .stringz "Hello World!"
.end

View file

@ -0,0 +1 @@
(: io format '"Hello world!~n")

View file

@ -0,0 +1 @@
'Hello world!'

View file

@ -0,0 +1 @@
print("Hello world!")

View file

@ -0,0 +1 @@
stdout.print("Hello world!\n")

View file

@ -0,0 +1 @@
put "Hello world!"

View file

@ -0,0 +1 @@
trace("Hello world!")

View file

@ -0,0 +1,3 @@
#! /usr/local/bin/livecode-server
set the outputLineEndings to "lf"
put "Hello world!" & return

View file

@ -0,0 +1 @@
write "Hello world!" & return to stdout

View file

@ -0,0 +1 @@
print "Hello world!"

View file

@ -0,0 +1,2 @@
('&%:9]!~}|z2Vxwv-,POqponl$Hjig%eB@@>}=<M:9wv6WsU2T|nm-,jcL(I&%$#"
`CB]V?Tx<uVtT`Rpo3NlF.Jh++FdbCBA@?]!~|4XzyTT43Qsqq(Lnmkj"Fhg${z@>

View file

@ -0,0 +1 @@
(=<`#9]~6ZY32Vx/4Rs+0No-&Jk)"Fh}|Bcy?`=*z]Kw%oG4UUS0/@-ejc(:'8dc

View file

@ -0,0 +1,11 @@
fmod BYE-WORLD is
protecting STRING .
op sayBye : -> String .
eq sayBye = "Hello world!" .
endfm
red sayBye .

View file

@ -0,0 +1,5 @@
import morfa.io.print;
func main(): void
{
println("Hello world!");
}

View file

@ -0,0 +1,5 @@
script HelloWorld {
func main returns: int {
print("Hello World!")
}
}

View file

@ -0,0 +1 @@
echo("Hello world!")

View file

@ -0,0 +1 @@
print "Hello world!"

View file

@ -0,0 +1 @@
"Hello world!" println

View file

@ -0,0 +1,3 @@
#!/openlisp/uxlisp -shell
(format t "Hello world!~%")
(print "Hello world!")

View file

@ -0,0 +1,7 @@
module helloworld;
extern printf;
@Integer main [
printf("Hello world!");
return 0;
]

View file

@ -0,0 +1 @@
puts(1,"Hello world!")

View file

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

View file

@ -0,0 +1,3 @@
new done: ^[]
run ( prNL!["Hello World!" (rchan done)]
| done?_ = () )

View file

@ -0,0 +1,3 @@
actor Main
new create(env: Env) =>
env.out.print("Hello world!")

View file

@ -0,0 +1 @@
"Hello world!\n" print

View file

@ -0,0 +1,6 @@
class HelloWorld
**Prints "Hello world!"**
on start
print "Hello world!"

View file

@ -0,0 +1 @@
See "Hello world!"

View file

@ -0,0 +1,12 @@
set ! H
set ! E
set ! L
set ! L
set ! O
set ! 32
set ! W
set ! O
set ! R
set ! L
set ! D
set ! 33

View file

@ -0,0 +1 @@
(output "Hello world!~%")

View file

@ -0,0 +1 @@
„Hello world!”.say;

View file

@ -0,0 +1 @@
print("Hello world!")

View file

@ -0,0 +1 @@
"Hello world!"

View file

@ -0,0 +1 @@
PRINT "Hello world!"

View file

@ -0,0 +1,8 @@
extern print
dv Msg Goodbye,World!
mov eax Msg
push
call print
pop

View file

@ -0,0 +1 @@
print("Hello world!");

View file

@ -0,0 +1 @@
print("Hello world!")

View file

@ -0,0 +1 @@
println("Hello world!")

View file

@ -0,0 +1 @@
'hello world' []

View file

@ -0,0 +1,6 @@
C = terralib.includec("stdio.h")
terra hello(argc : int, argv : &rawstring)
C.printf("Hello world!\n")
return 0
end

View file

@ -0,0 +1,2 @@
%TestML 0.1.0
Print("Hello world!")

View file

@ -0,0 +1 @@
message "Hello world!"

View file

@ -0,0 +1 @@
out "hello world!" endl console

View file

@ -0,0 +1 @@
prn "Hello world!"

View file

@ -0,0 +1 @@
Print["Hello world!"]

View file

@ -0,0 +1 @@
System.print("Hello world!")

View file

@ -0,0 +1,2 @@
(DISPLAY "Hello world!")
(NEWLINE)

View file

@ -0,0 +1 @@
"Hello world!"