Loops/Infinite: Difference between revisions

(debug.prints to stderr, but we want to follow other examples that print to stdout.)
Line 989:
=={{header|FutureBasic}}==
Loop de loop -- whose great idea was this?
<lang futurebasic>include "NSLog.incl"
include "ConsoleWindow"
 
dispatchglobal
while 1
print "Spam"
NSLog(@"SPAM")
wend
</lang>
dispatchend
 
HandleEvents</lang>
 
=={{header|Gambas}}==
408

edits