Loops/Infinite: Difference between revisions

Content added Content deleted
(debug.prints to stderr, but we want to follow other examples that print to stdout.)
Line 989: Line 989:
=={{header|FutureBasic}}==
=={{header|FutureBasic}}==
Loop de loop -- whose great idea was this?
Loop de loop -- whose great idea was this?
<lang futurebasic>
<lang futurebasic>include "NSLog.incl"
include "ConsoleWindow"


dispatchglobal
while 1
while 1
print "Spam"
NSLog(@"SPAM")
wend
wend
</lang>
dispatchend

HandleEvents</lang>


=={{header|Gambas}}==
=={{header|Gambas}}==