0 Members and 3 Guests are viewing this topic.
Multi-Line comments...Probably someone already suggested this feature, but this thread is 114 pages long :S
I haven't seen requests for multi-line comments yet, actually.
Comments!!! Yay! That's great. Can you have comment blocks? (Like ' ' to ' ' mabey?)
For the goto-if and goto-!if I think I will auto-optimize the existing commands instead of creating entirely new syntax. It would actually be easier I think to read and write and no one would have to change their syntax. Same thing with sub().
:If CONDITION:Goto LBL:End
Speaking of optimizing control structures, any chance for Do...While loops?
Quote from: Runer112 on December 31, 2010, 05:20:38 pmSpeaking of optimizing control structures, any chance for Do...While loops?I'd like Switch cases more than Do...While loops, but I don't really know how the second works.
;While[x] Loop condition[2] Check if loop condition is true or false[3] Exit the loop if false;Loop contents;End[3] Jump back to the beginning of the loop
;Do;[0] Start of the loop, takes no actual code;Loop contents;While[x] Loop condition[2] Check if loop condition is true or false[3] Jump back to the beginning of the loop if true