Be concise.
Be useful.
All contributions dictatorially edited by webmasters to match personal tastes.
Please do not paste any copyright violating resource.
Please try to avoid dependencies to third-party libraries and frameworks.
for(;;){ // Do something }
for { // Do something }
while (1) { do_stuff(); }
loop { // Do something }
while (true) { // do something }
#define forever while(1)
forever { // Do something }
for(;;){ // Do something }
while(1){ // Do something }
while (true) { }
while True: pass
while (true) { // do something }
While True do { nothing };
loop do # endless joy end
import Control.Monad
forever (getLine >>= putStrLn)
defmodule Looping do def infinite do # Write code here infinite end end
while(true) { // Do something }
while true do -- Do something end
loop null; end loop;
while (true) { // Do something }
for (;;) { /// Do something }
while (true) { // Do something }
while (true) { // to infinity }
while(true){ println(3) }
for (;;) {}
(loop [] ;; do something (recur))
say "" while True;
(loop)
repeat, write("hello\n").
do end do
for(let i = 0; i > -1; i++) { console.log('Oops') }
while (true) { }
let x = x in x
IDENTIFICATION DIVISION. PROGRAM-ID. no end loop. PROCEDURE DIVISION. PERFORM UNTIL 1 < 0 DISPLAY "Something" END-PERFORM STOP RUN.
Public Sub infiloop() Do Loop End Sub