Merge branch 'master' of git://github.com/leachim6/hello-world

sync with upstream
This commit is contained in:
Shark
2015-12-24 00:34:19 +01:00
28 changed files with 98 additions and 13 deletions

3
a/ALGOL-W.algol Normal file
View File

@@ -0,0 +1,3 @@
begin
write( "Hello world!" )
end.

7
a/aime.aime Normal file
View File

@@ -0,0 +1,7 @@
integer
main(void)
{
o_text("Hello world!\n");
return 0;
}

1
a/algae.algae Normal file
View File

@@ -0,0 +1 @@
printf("Hello world!\n");

1
a/alore.alore Normal file
View File

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

View File

@@ -1,5 +1,5 @@
public class Ash {
public static void main(args : String[]) {
public static func main(args : [String]) {
println("Hello, world!")
}
}

6
a/assembler_lc-3 Normal file
View File

@@ -0,0 +1,6 @@
.ORIG x3000
LEA R0, HELLOWORLD
PUTS
HELLOWORLD .STRINGZ "Hello world!\n"