2020-08-27, 07:56 AM
(2020-08-26, 04:55 PM)Neurox66 Wrote: Hi,
I would like to see available on the ZX Basic the control flow statements SELECT/CASE ... END SELECT
Code:Select Case Answer$
Case "YES"
...
Case "NO"
...
Case "MAYBE"
...
Default
...
End Select
Thanks,
Paolo
This is planned, but not implemented.
In the meantime try using
Code:
IF
ELSEIF
ELSEIF
ELSE...(notice ELSEIF is written with no spaces)

