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
TALK TO THE HAND "hello world"
TALK TO THE HAND "Hello World"
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
Print "Hello world"
Print "Hello World"
WaitKey
End
End

View File

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

View File

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

View File

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

View File

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

View File

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

View File

@@ -2,7 +2,7 @@
Section Header
+ name := HELLO_WORLD;
Section Inherit
- parent_object:OBJECT := OBJECT;
@@ -11,5 +11,5 @@ Section Public
- 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){
println("hello world");
}
void main(String[] args){
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
$q = CGI->new; # create new CGI object
print $q->header, # create the HTTP header
$q->start_html('hello world'), # start the HTML
$q->h1('hello world'), # level 1 header
$q->start_html('Hello World'), # start the HTML
$q->h1('Hello World'), # level 1 header
$q->end_html; # end the 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
"Hello world"
"Hello World"

View File

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

View File

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

View File

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