Loops/Infinite: Difference between revisions

m
→‎{{header|GlovePIE}}: A GlovePIE example has been added. I hope to add an additional GlovePIE example that can use an existing multi-line text box, such as the writing/noting area in Notepad, and thus can use multiple lines.
m (Zoomscript example added.)
m (→‎{{header|GlovePIE}}: A GlovePIE example has been added. I hope to add an additional GlovePIE example that can use an existing multi-line text box, such as the writing/noting area in Notepad, and thus can use multiple lines.)
Line 744:
<lang GB BASIC>10 print "SPAM"
20 goto10</lang>
 
=={{header|GlovePIE}}==
GlovePIE does not natively support multiple lines of output. As such, this code continuously changes the single line of output to SPAM. The below code does this because all GlovePIE scripts loop indefinitely until the program is stopped.
<lang GlovePIE>debug = "SPAM"</lang>
 
=={{header|GML}}==
441

edits