To properly display this page you need a browser with JavaScript support.
HTBasic Help
×
Menu
Index
Search
Search
HTBasic Example Programs
input EXAMPLE
Previous page
Next page
Print version
(c) TransEra Corp, 2021
To properly display this page you need a browser with JavaScript support.
input Example
10 PRINT "Enter your name."
20 INPUT B$
30 PRINT "Enter your age."
40 INPUT A
50 PRINT "Hello ";B$&",";" you are";A;"years old."
60 END