Jump to content

Loops/While: Difference between revisions

m
→‎{{header|Prolog}}: Reinserted lang tags, since the bug's been fixed.
m (→‎{{header|Prolog}}: Reinserted lang tags, since the bug's been fixed.)
Line 457:
 
=={{header|Prolog}}==
<lang prolog>while(0) :- !.
while(X) :- write(X), nl, X1 is X // 2, while(X1).</lang>
 
=={{header|Python}}==
845

edits

Cookies help us deliver our services. By using our services, you agree to our use of cookies.