9 lines
222 B
Text
9 lines
222 B
Text
S$ = "Hello"
|
|
S$ = S$ + " Wo" ;by referencing the string twice
|
|
S$ + "rld!" ;by referencing the string once
|
|
If OpenConsole()
|
|
PrintN(S$)
|
|
|
|
Print(#CRLF$ + #CRLF$ + "Press ENTER to exit"): Input()
|
|
CloseConsole()
|
|
EndIf
|