?? sample1.bas
字號:
rem
rem Example of Program to print HELLO on screen.
rem
rem This program has waits for input before stopping.
rem We are waiting for input because in Windows, when program stops
rem the window is erased and we couldn't see the Hello.
rem
rem This program uses a function unique to BasicBasic. This is the
rem function OSTYPE. This function returns a 1 if DOS or a 2 if running
rem under Windows.
rem
print "Hello!"
if ostype=1 then
print
print "Press any key to continue..."
end if
do while inkey$=""
loop
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -