Normalize messages

Signed-off-by: Richie Bendall <richiebendall@gmail.com>
This commit is contained in:
Richie Bendall
2020-03-30 18:39:11 +13:00
parent 7d9cbabcaa
commit 2075605fb4
24 changed files with 34 additions and 36 deletions

View File

@@ -1 +1 @@
void main() { print("Hello world\n"); } void main() { print("Hello World\n"); }

View File

@@ -1,3 +1,3 @@
IT'S SHOWTIME IT'S SHOWTIME
TALK TO THE HAND "hello world" TALK TO THE HAND "Hello World"
YOU HAVE BEEN TERMINATED YOU HAVE BEEN TERMINATED

View File

@@ -1 +1 @@
println("Hello world"); println("Hello World");

View File

@@ -1,4 +1,4 @@
;Blitz3D Hello World demo by MANIAK_dobrii ;Blitz3D Hello World demo by MANIAK_dobrii
Print "Hello world" Print "Hello World"
WaitKey WaitKey
End End

View File

@@ -1 +1 @@
VALUES('hello world') VALUES('Hello World')

View File

@@ -1,3 +1,3 @@
proc main()void: proc main()void:
writeln("Hello world!"); writeln("Hello World!");
corp; corp;

View File

@@ -1,2 +1,2 @@
#!/usr/bin/env elixir #!/usr/bin/env elixir
IO.puts "Hello world" IO.puts "Hello World"

View File

@@ -1,5 +1,5 @@
module hello.world module hello.world
function main = |args| { function main = |args| {
println("Hello world") println("Hello World")
} }

View File

@@ -1 +1 @@
show "hello world" show "Hello World"

View File

@@ -2,7 +2,7 @@
Section Header Section Header
+ name := HELLO_WORLD; + name := HELLO_WORLD;
Section Inherit Section Inherit
- parent_object:OBJECT := OBJECT; - parent_object:OBJECT := OBJECT;
@@ -11,5 +11,5 @@ Section Public
- main <- - main <-
( (
"Hello world !\n".print; "Hello World !\n".print;
); );

View File

@@ -1 +1 @@
disp('hello world') disp('Hello World')

View File

@@ -1 +1 @@
print 'hello world' print 'Hello World'

View File

@@ -1 +1 @@
Print["Hello world"] Print["Hello World"]

View File

@@ -1 +1 @@
$print("hello world\n"); $print("Hello World\n");

View File

@@ -1,3 +1,3 @@
void main(String[] args){ void main(String[] args){
println("hello world"); println("Hello World");
} }

View File

@@ -1 +1 @@
echo("hello world") echo("Hello World")

View File

@@ -1 +1 @@
jlog("Hello world") jlog("Hello World")

View File

@@ -2,8 +2,8 @@
use CGI; # load CGI routines use CGI; # load CGI routines
$q = CGI->new; # create new CGI object $q = CGI->new; # create new CGI object
print $q->header, # create the HTTP header print $q->header, # create the HTTP header
$q->start_html('hello world'), # start the HTML $q->start_html('Hello World'), # start the HTML
$q->h1('hello world'), # level 1 header $q->h1('Hello World'), # level 1 header
$q->end_html; # end the HTML $q->end_html; # end the HTML
# http://perldoc.perl.org/CGI.html # http://perldoc.perl.org/CGI.html

View File

@@ -1,2 +1,2 @@
PRINT "hello world" PRINT "Hello World"

2
r/R.R
View File

@@ -1 +1 @@
cat("Hello world\n") cat("Hello World\n")

View File

@@ -1,2 +1,2 @@
#lang racket #lang racket
"Hello world" "Hello World"

View File

@@ -1 +1 @@
console.log "Hello world" console.log "Hello World"

View File

@@ -1,3 +1 @@
while(1) disp("Hello World")
printf("hello world");
end

View File

@@ -1 +1 @@
(pr "hello world") (pr "Hello World")