my-basic/sample/sample01.bas
2017-11-20 12:43:44 +08:00

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$ + "!"