Normalize printed text

Signed-off-by: Richie Bendall <richiebendall@gmail.com>
This commit is contained in:
Richie Bendall
2020-03-30 04:21:52 +13:00
parent 9cf0cd7a7b
commit ad16f6d78a
239 changed files with 248 additions and 252 deletions

2
v/V
View File

@@ -1 +1 @@
iHello World!
iHello World

View File

@@ -1,7 +1,7 @@
on "2.19.64"
\header{
title = "Hello, World!"
title = "Hello World"
}
\language "english"

View File

@@ -1,7 +1,7 @@
module main;
initial
begin
$display("Hello World!");
$display("Hello World");
$finish;
end
endmodule

View File

@@ -7,7 +7,7 @@ architecture behaviour of hello_world is
begin
process
begin
write (output, String'("Hello world!"));
write (output, String'("Hello World"));
wait;
end process;
end behaviour;

View File

@@ -1,3 +1,3 @@
def main() {
System.puts("Hello World!\n");
System.puts("Hello World\n");
}

View File

@@ -1,5 +1,5 @@
Module HelloWorld
Sub Main()
MsgBox("Hello world!")
MsgBox("Hello World")
End Sub
End Module

View File

@@ -1 +1 @@
MsgBox "Hello world!"
MsgBox "Hello World"

View File

@@ -10,8 +10,8 @@ loForm.Show(1)
DEFINE CLASS HiForm AS Form
AutoCenter = .T.
Caption = "Hello, World"
Caption = "Hello World"
ADD OBJECT lblHi as Label ;
WITH Caption = "Hello, World!"
WITH Caption = "Hello World"
ENDDEFINE

View File

@@ -1,4 +1,4 @@
$top:
$write sys$output "Hello world!"
$write sys$output "Hello World"
$wait 00:00:10
$goto top

View File

@@ -5,7 +5,7 @@
new Vue({
el: '#app',
data: {
message: 'Hello World!'
message: 'Hello World'
}
})
</script>