7 lines
222 B
QBasic
Executable File
7 lines
222 B
QBasic
Executable File
' This script is an example of MY-BASIC
|
|
' Copyright (c) 2011 - 2016 Wang Renxin. All rights reserved.
|
|
' For more information, see https://github.com/paladin-t/my_basic/
|
|
|
|
s$ = "hello "
|
|
s$ = s$ + "world"
|
|
print s$ + "!" |