[Gambas-user] R: Unending cycle "For...Next" with variable As Byte

Jussi Lahtinen jussi.lahtinen at ...626...
Mon Oct 1 13:05:57 CEST 2012


> FOR byte = 0 TO 254
>       PRINT index
> NEXT index
>       PRINT index
> END FOR index
>

This same thing is simpler in Gambas:

For ii = 0 to 254
Print ii
Next
Print ii


Jussi



More information about the User mailing list