To properly display this page you need a browser with JavaScript support.
HTBasic Help
×
Menu
Index
Search
Search
HTBasic Example Programs
inmem EXAMPLE
Previous page
Next page
Print version
(c) TransEra Corp, 2021
To properly display this page you need a browser with JavaScript support.
inmem Example
10 CLEAR SCREEN
20 Str$="FNZtest"
30 IF INMEM(Str$) THEN
40 PRINT "Procedure ";Str$;" is in memory"
50 ELSE
60 PRINT "No such procedure ";Str$;" in memory."
70 END IF
80 END
90 SUB Test
100 SUBEND
110 DEF FNZtest
120 FNEND