Loops/Infinite: Difference between revisions

Content added Content deleted
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 (→‎{{header|GlovePIE}}: The description is more specific.)
Line 746: Line 746:


=={{header|GlovePIE}}==
=={{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.
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 without specifying an infinite loop because all GlovePIE scripts loop indefinitely until the program is stopped.
<lang GlovePIE>debug = "SPAM"</lang>
<lang GlovePIE>debug = "SPAM"</lang>