mobilebasic/Examples/Speech/Hello.bas

11 lines
139 B
QBasic
Raw Normal View History

2021-03-29 19:43:07 +03:00
SUB MAIN
PRINT "HELLO"
SPEAK "HELLO"
WHILE (IsSpeaking())
SLEEP 100
END WHILE
PRINT "GOODBYE"
SPEAK "GOODBYE"
END SUB