my-basic/sample/sample01.bas
2014-11-20 00:51:18 +08:00

7 lines
220 B
QBasic

' This script is an example of MY-BASIC
' Copyright (c) 2011 - 2014 W. Renxin. All rights reserved.
' For more information, see https://github.com/paladin-t/my_basic/
s$ = "hello "
s$ = s$ + "world"
PRINT s$ + "!"