This commit is contained in:
Aniruddh 2014-02-23 18:17:20 -05:00
commit c9c4b43caa
26 changed files with 88 additions and 7 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

3
b/bc.bc Executable file
View File

@ -0,0 +1,3 @@
#!/usr/bin/bc -q
print "Hello World!\n"
quit

1
c/Casio BASIC Normal file
View File

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

View File

@ -1,8 +1,6 @@
#include<iostream>
using namespace std;
#include <iostream>
int main()
{
cout << "Hello World" << endl;
std::cout << "Hello World" << std::endl;
}

3
c/clean.icl Normal file
View File

@ -0,0 +1,3 @@
module hello
Start :: {#Char}
Start = "Hello, world!"

View File

1
d/DCL Normal file
View File

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

10
d/dark.dark Normal file
View File

@ -0,0 +1,10 @@
+hello hell
hello$twist sign hws
hello$twist stalker io
io$stalk
io$personal
hws$scrawl " Hello, world!
hws$read
io$echo
hello$empty
hello$apocalypse

2
d/dc.dc Executable file
View File

@ -0,0 +1,2 @@
#!/usr/bin/dc
[Hello World!]p

3
d/dogescript.djs Normal file
View File

@ -0,0 +1,3 @@
shh such hello dogescript very next-gen wow difficulty
plz console.loge with 'Hello World'

5
g/golo.golo Normal file
View File

@ -0,0 +1,5 @@
module hello.world
function main = |args| {
println("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

1
j/julia.jl Normal file
View File

@ -0,0 +1 @@
println("Hello World")

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
m/moonscript.moon Normal file
View File

@ -0,0 +1 @@
print 'hello world'

1
o/obix.osc Normal file
View File

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

View File

@ -1,3 +1 @@
<?php
print("Hello World");
?>
Hello World

3
r/rust.rs Normal file
View File

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

3
v/virgil.v3 Normal file
View File

@ -0,0 +1,3 @@
def main() {
System.puts("Hello World!\n");
}