Loops/Infinite: Difference between revisions

Content added Content deleted
No edit summary
(Added Robotic implementation to Loops/Infinite)
Line 1,398: Line 1,398:
see "Spam"
see "Spam"
end
end
</lang>

=={{header|Robotic}}==
This will display the word '''SPAM''' at the bottom of the screen indefinitely:
<lang robotic>
: "infinite_loop"
* "SPAM"
goto "infinite_loop"
</lang>
</lang>