my-basic/sample/sample01.bas
2016-12-31 17:38:45 +08:00

8 lines
229 B
QBasic
Executable File

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