7 lines
171 B
QBasic
Executable File
7 lines
171 B
QBasic
Executable File
REM This program is an example of MY-BASIC
|
|
REM For more information, see https://github.com/paladin-t/my_basic/
|
|
|
|
s$ = "Hello"
|
|
s$ = s$ + " " + "world"
|
|
print s$ + "!"
|