Merge branch 'master' of git://github.com/leachim6/hello-world
sync with upstream
This commit is contained in:
3
a/ALGOL-W.algol
Normal file
3
a/ALGOL-W.algol
Normal file
@@ -0,0 +1,3 @@
|
||||
begin
|
||||
write( "Hello world!" )
|
||||
end.
|
||||
7
a/aime.aime
Normal file
7
a/aime.aime
Normal file
@@ -0,0 +1,7 @@
|
||||
integer
|
||||
main(void)
|
||||
{
|
||||
o_text("Hello world!\n");
|
||||
|
||||
return 0;
|
||||
}
|
||||
1
a/algae.algae
Normal file
1
a/algae.algae
Normal file
@@ -0,0 +1 @@
|
||||
printf("Hello world!\n");
|
||||
1
a/alore.alore
Normal file
1
a/alore.alore
Normal file
@@ -0,0 +1 @@
|
||||
Print('Hello world!')
|
||||
@@ -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
6
a/assembler_lc-3
Normal file
@@ -0,0 +1,6 @@
|
||||
.ORIG x3000
|
||||
|
||||
LEA R0, HELLOWORLD
|
||||
PUTS
|
||||
|
||||
HELLOWORLD .STRINGZ "Hello world!\n"
|
||||
Reference in New Issue
Block a user