RosettaCodeData/Task/String-append/PureBasic/string-append.basic
2023-07-01 13:44:08 -04:00

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