Normalize printed text
Signed-off-by: Richie Bendall <richiebendall@gmail.com>
This commit is contained in:
@@ -1,7 +1,7 @@
|
||||
on "2.19.64"
|
||||
|
||||
\header{
|
||||
title = "Hello, World!"
|
||||
title = "Hello World"
|
||||
}
|
||||
|
||||
\language "english"
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
module main;
|
||||
initial
|
||||
begin
|
||||
$display("Hello World!");
|
||||
$display("Hello World");
|
||||
$finish;
|
||||
end
|
||||
endmodule
|
||||
|
||||
@@ -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;
|
||||
@@ -1,3 +1,3 @@
|
||||
def main() {
|
||||
System.puts("Hello World!\n");
|
||||
System.puts("Hello World\n");
|
||||
}
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
Module HelloWorld
|
||||
Sub Main()
|
||||
MsgBox("Hello world!")
|
||||
MsgBox("Hello World")
|
||||
End Sub
|
||||
End Module
|
||||
@@ -1 +1 @@
|
||||
MsgBox "Hello world!"
|
||||
MsgBox "Hello World"
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
$top:
|
||||
$write sys$output "Hello world!"
|
||||
$write sys$output "Hello World"
|
||||
$wait 00:00:10
|
||||
$goto top
|
||||
|
||||
Reference in New Issue
Block a user