Skip to content

Commit

Permalink
Normalize messages
Browse files Browse the repository at this point in the history
Signed-off-by: Richie Bendall <richiebendall@gmail.com>
  • Loading branch information
Richienb committed Mar 30, 2020
1 parent 7d9cbab commit 2075605
Show file tree
Hide file tree
Showing 24 changed files with 34 additions and 36 deletions.
2 changes: 1 addition & 1 deletion a/angelscript
@@ -1 +1 @@
void main() { print("Hello world\n"); }
void main() { print("Hello World\n"); }
2 changes: 1 addition & 1 deletion a/arnoldc.arnoldc
@@ -1,3 +1,3 @@
IT'S SHOWTIME
TALK TO THE HAND "hello world"
TALK TO THE HAND "Hello World"
YOU HAVE BEEN TERMINATED
2 changes: 1 addition & 1 deletion b/batsh.batsh
@@ -1 +1 @@
println("Hello world");
println("Hello World");
4 changes: 2 additions & 2 deletions b/blitz3d.bb
@@ -1,4 +1,4 @@
;Blitz3D Hello World demo by MANIAK_dobrii
Print "Hello world"
Print "Hello World"
WaitKey
End
End
2 changes: 1 addition & 1 deletion d/db2.sql
@@ -1 +1 @@
VALUES('hello world')
VALUES('Hello World')
4 changes: 2 additions & 2 deletions d/draco.d
@@ -1,3 +1,3 @@
proc main()void:
writeln("Hello world!");
corp;
writeln("Hello World!");
corp;
2 changes: 1 addition & 1 deletion e/elixir.exs
@@ -1,2 +1,2 @@
#!/usr/bin/env elixir
IO.puts "Hello world"
IO.puts "Hello World"
6 changes: 3 additions & 3 deletions g/golo.golo
@@ -1,5 +1,5 @@
module hello.world

function main = |args| {
println("Hello world")
}
function main = |args| {
println("Hello World")
}
2 changes: 1 addition & 1 deletion g/gri.gri
@@ -1 +1 @@
show "hello world"
show "Hello World"
6 changes: 3 additions & 3 deletions l/lisaac.li
Expand Up @@ -2,7 +2,7 @@

Section Header
+ name := HELLO_WORLD;

Section Inherit

- parent_object:OBJECT := OBJECT;
Expand All @@ -11,5 +11,5 @@ Section Public

- main <-
(
"Hello world !\n".print;
);
"Hello World !\n".print;
);
2 changes: 1 addition & 1 deletion m/matlab.m
@@ -1 +1 @@
disp('hello world')
disp('Hello World')
2 changes: 1 addition & 1 deletion m/moonscript.moon
@@ -1 +1 @@
print 'hello world'
print 'Hello World'
2 changes: 1 addition & 1 deletion n/mathematica.nb
@@ -1 +1 @@
Print["Hello world"]
Print["Hello World"]
2 changes: 1 addition & 1 deletion n/neko.neko
@@ -1 +1 @@
$print("hello world\n");
$print("Hello World\n");
6 changes: 3 additions & 3 deletions n/nice.nice
@@ -1,3 +1,3 @@
void main(String[] args){
println("hello world");
}
void main(String[] args){
println("Hello World");
}
2 changes: 1 addition & 1 deletion n/nim.nim
@@ -1 +1 @@
echo("hello world")
echo("Hello World")
2 changes: 1 addition & 1 deletion o/opa.opa
@@ -1 +1 @@
jlog("Hello world")
jlog("Hello World")
6 changes: 3 additions & 3 deletions p/perl.cgi
Expand Up @@ -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
2 changes: 1 addition & 1 deletion q/Qbasic.bas
@@ -1,2 +1,2 @@

PRINT "hello world"
PRINT "Hello World"
2 changes: 1 addition & 1 deletion r/R.R
@@ -1 +1 @@
cat("Hello world\n")
cat("Hello World\n")
2 changes: 1 addition & 1 deletion r/racket.rkt
@@ -1,2 +1,2 @@
#lang racket
"Hello world"
"Hello World"
2 changes: 1 addition & 1 deletion r/roy.roy
@@ -1 +1 @@
console.log "Hello world"
console.log "Hello World"
4 changes: 1 addition & 3 deletions s/scilab.scilab
@@ -1,3 +1 @@
while(1)
printf("hello world");
end
disp("Hello World")
2 changes: 1 addition & 1 deletion s/shen.shen
@@ -1 +1 @@
(pr "hello world")
(pr "Hello World")

0 comments on commit 2075605

Please sign in to comment.