Posted: Fri Jan 02, 2004 2:21 pm
do .. loop is common in a number of dialects, true, often combined with exit (if)
hey, psycho, you wanna' turn purebasic into an even more non-basic basic? 
an alternative syntax for do .. loop i've seen is repeat .. forever
re aliases... gfabasic (16) just implemented each and every flavour of each command, including some very weird ones... type casting: L: W: B:... alternative peeks {WORD} {CARD} etc. although they sometimes went a little overboard...
Code: Select all
do
whatever
if a!=true
exit
endif
loop

an alternative syntax for do .. loop i've seen is repeat .. forever

re aliases... gfabasic (16) just implemented each and every flavour of each command, including some very weird ones... type casting: L: W: B:... alternative peeks {WORD} {CARD} etc. although they sometimes went a little overboard...