September 2017 Update

This commit is contained in:
Ingy döt Net 2017-09-23 10:01:46 +02:00
parent bba7bfd280
commit ba8067c3b7
14570 changed files with 153136 additions and 63871 deletions

View file

@ -0,0 +1,3 @@
BEGIN
WRITE( "Hello world!" );
END

View file

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

View file

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

View file

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

View file

@ -0,0 +1 @@
*`Hello, World!

View file

@ -0,0 +1,7 @@
>`ld!
`
r
o
W
`
b` ,olleH`_

View file

@ -0,0 +1,7 @@
r l
l o
``
ol`*`,d!
``
e H
W

View file

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

View file

@ -0,0 +1,3 @@
/client/New()
..()
src << "Hello world!"

View file

@ -0,0 +1,4 @@
method Main() {
print "hello, world!\n";
assert 10 < 2;
}

View file

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

View file

@ -0,0 +1,7 @@
class GoodByeApp : Application
{
void Main()
{
PrintLn("Hello world!");
}
}

View file

@ -0,0 +1,18 @@
package hello;
// Import the `basic' package
import basic;
// Define a simple function
function hello()
{
// Print hello world
basic.print( "Hello world!\n" );
}
/*
* Here we start to execute package code
*/
// Invoke the `hello' function
hello();

View file

@ -1,4 +1,4 @@
#symbol program =
program =
[
system'console writeLine:"Hello world!".
console writeLine:"Hello world!".
].

View file

@ -1,5 +1 @@
#import system.
#import system'dynamic.
#symbol program
= Tape("Hello world!",system'console,%"writeLine[1]").
program = system'dynamic'Tape("Hello world!",system'console,%"writeLine[1]").

View file

@ -1 +0,0 @@
puts(1,"Goodbye, World!\n")

View file

@ -0,0 +1,2 @@
uses "console";
Console.println( "Goodby, World!" );

View file

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

View file

@ -1 +1,5 @@
Public Sub Main()
PRINT "Hello world!"
End

View file

@ -0,0 +1 @@
'Hello, <> 'World! print

View file

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

View file

@ -1 +1,3 @@
main = putStrLn "Hello world!"
message :: String
message = "Hello world!"
main = putStrLn message

View file

@ -0,0 +1,13 @@
OPENCONSOLE
PRINT"Hello world!"
'This line could be left out.
PRINT:PRINT:PRINT"Press any key to end."
'Keep the console from closing right away so the text can be read.
DO:UNTIL INKEY$<>""
CLOSECONSOLE
END

View file

@ -4,3 +4,8 @@ Hello world!
Hello world!
smoutput data
Hello world!
NB. unassigned names are verbs of infinite rank awaiting definition.
NB. j pretty prints the train.
Hello World!
Hello World !

View file

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

View file

@ -0,0 +1,11 @@
\version "2.18.2"
global = {
\time 4/4
\key c \major
\tempo 4=100
}
\relative c''{ g e e( g2)
}
\addlyrics {
Hel -- lo, World!
}

View file

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

View file

@ -0,0 +1,2 @@
all:
$(info Hello world!)

View file

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

View file

@ -1 +0,0 @@
echo("Goodbye, World!")

View file

@ -1 +0,0 @@
[[NSFileHandle fileHandleWithStandardOutput] writeData:[@"Goodbye, World!" dataUsingEncoding:NSUTF8StringEncoding]];

View file

@ -1 +0,0 @@
NSLog(@"Goodbye, World!");

View file

@ -0,0 +1,2 @@
/* Rexx */
say 'Hello world!'

View file

@ -0,0 +1 @@
T:Hello world!

View file

@ -0,0 +1,6 @@
set serveroutput on
BEGIN
DBMS_OUTPUT.PUT_LINE('Hello world!');
END;
/

View file

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

View file

@ -0,0 +1 @@
#.output("Hello world!")

View file

@ -0,0 +1 @@
select 'Hello world!' text from dual;

View file

@ -0,0 +1,3 @@
i\
Hello world!
q

View file

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

View file

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

View file

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

View file

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

View file

@ -0,0 +1,3 @@
! In True BASIC all programs run in their own window. So this is almost a graphical version.
PRINT "Hello world!"
END

View file

@ -0,0 +1,6 @@
.function: main/0
text %1 local "Hello World!"
print %1 local
izero %0 local
return
.end

View file

@ -0,0 +1,2 @@
h#10 h$! h$d h$l h$r h$o h$w h#32
h$o h$l h$l h$e h$H >o o$ p jno

View file

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