Code: Select all
For a.f = 0 to 1 Step .1
; Do some stuff with floats
Next
Or this:
Code: Select all
If OpenConsole() = 0 : End
Floats in For/Next would especially be helpful...
Russell
Code: Select all
For a.f = 0 to 1 Step .1
; Do some stuff with floats
Next
Code: Select all
If OpenConsole() = 0 : End
Code: Select all
If OpenConsole() = 0 : End : EndifUm, yeah, I know. That's why I posted itFirst, no i don't think you can put floats into For loops,
Yeah. But, again, every other BASIC allows you to simply sayBut the second one,You must always close the IF statement.Code: Select all
Code: If OpenConsole() = 0 : End : Endif
Code: Select all
If whatever Then DoThis.
