8 lines
229 B
QBasic
Executable File
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$ + "!"
|