Sets the limit on the maximum amount of memory that STRINGS are allowed to use during program execution. The default value after a COLD BOOT, NEW or CLEAR for STRS is 255.
Program Example.
00100 REM Demonstration of the STRS function
00110 A = 5000
00120 STRS(5)
00130 PRINT FRE($) : REM print the free string space
00140 STRS(A)
00150 PRINT FRE($)
00160 END
See also FRE($)