Loops/Infinite: Difference between revisions

add BQN
(Added solution for Action!)
(add BQN)
Line 516:
<lang bootBASIC>10 print "SPAM"
20 run</lang>
 
=={{header|BQN}}==
 
The main way of performing an infinite loop in BQN is using recursion.
 
<lang BQN>{𝕊 •Out 𝕩}"SPAM"</lang>
 
will likely end in a stack overflow.
 
=={{header|Bracmat}}==
236

edits