COUNT
STRING
This function will return the length of an array.
Example
DIM strings$=("kytsch", "BASIC")
DEF count%=COUNT(strings$)
PRINT count%
LINE BREAK
PRINT COUNT(strings$), "basic"
Output
2
2
2
Put down that phone!
Please view me on real computer.
COUNT
STRING
This function will return the length of an array.
DIM strings$=("kytsch", "BASIC")
DEF count%=COUNT(strings$)
PRINT count%
LINE BREAK
PRINT COUNT(strings$), "basic"