To properly display this page you need a browser with JavaScript support.
HTBasic Help
×
Menu
Index
Search
Search
HTBasic Example Programs
if_then EXAMPLE
Previous page
Next page
Print version
(c) TransEra Corp, 2021
To properly display this page you need a browser with JavaScript support.
if_then Example
10 CLEAR SCREEN20 X= NOT 0 ! x is non zero, so it is true.30 PRINT "Is x true...?"40 IF X THEN50 PRINT "X is true."
60 ELSE
70 PRINT "NO, x is not true."
80 END IF
90 END