Merge pull request #108 from bcnjr5/master

Added a bunch of languages.
This commit is contained in:
Mike Donaghy
2014-01-26 15:43:16 -08:00
15 changed files with 54 additions and 0 deletions

4
Dart.dart Normal file
View File

@@ -0,0 +1,4 @@
main()
{
print('Hello, world!');
}

6
b/BCPL.bcl Normal file
View File

@@ -0,0 +1,6 @@
GET "LIBHDR"
LET START() BE
$(
WRITES("Hello, world!*N")
$)

6
b/BennuGD Normal file
View File

@@ -0,0 +1,6 @@
import "mod_say"
Process Main()
Begin
say("Hello World!");
End

1
c/Casio BASIC Normal file
View File

@@ -0,0 +1 @@
"HELLO, WORLD!"

View File

1
d/DCL Normal file
View File

@@ -0,0 +1 @@
WRITE SYS$OUTPUT "Hello, world!"

6
h/HOP Normal file
View File

@@ -0,0 +1,6 @@
(define-service (hello-world)
(<HTML>
(<HEAD>
(<TITLE> "Hello, world!"))
(<BODY>
"Hello, world!")))

2
i/IDL Normal file
View File

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

1
i/ISLISP.lisp Normal file
View File

@@ -0,0 +1 @@
(format (standard-output) "Hello, world!")

16
i/intercal.i Normal file
View File

@@ -0,0 +1,16 @@
DO ,1 <- #13
PLEASE DO ,1 SUB #1 <- #238
DO ,1 SUB #2 <- #108
DO ,1 SUB #3 <- #112
DO ,1 SUB #4 <- #0
DO ,1 SUB #5 <- #64
DO ,1 SUB #6 <- #194
DO ,1 SUB #7 <- #48
PLEASE DO ,1 SUB #8 <- #22
DO ,1 SUB #9 <- #248
DO ,1 SUB #10 <- #168
DO ,1 SUB #11 <- #24
DO ,1 SUB #12 <- #16
DO ,1 SUB #13 <- #162
PLEASE READ OUT ,1
PLEASE GIVE UP

5
kotlin Normal file
View File

@@ -0,0 +1,5 @@
package hello
fun main(args : Array<String>) {
println("Hello, world!")
}

1
l/logo.logo Normal file
View File

@@ -0,0 +1 @@
print [Hello, world!]

1
m/MSL.mrc Normal file
View File

@@ -0,0 +1 @@
echo -a Hello, world!

1
o/obix.osc Normal file
View File

@@ -0,0 +1 @@
system.console.write_line ( "Hello, world!" )

3
r/rust.rs Normal file
View File

@@ -0,0 +1,3 @@
fn main() {
io::println("Hello, world!");
}