Be concise.
Be useful.
All contributions dictatorially edited by webmasters to match personal tastes.
Please do not paste any copyright violating material.
Please try to avoid dependencies to third-party libraries and frameworks.
- Ada
- C
- C
- Clojure
- Cobol
- C++
- C#
- D
- Dart
- Elixir
- Erlang
- Fortran
- Go
- Go
- Haskell
- JS
- Java
- Java
- Lisp
- Lua
- Obj-C
- PHP
- Pascal
- Pascal
- Perl
- Python
- Python
- Ruby
- Rust
- Rust
- Scala
- Smalltalk
- VB
loop
stuff();
if not c then
exit;
end if;
end loop;
do {
someThing();
someOtherThing();
} while(c);
The block code is not repeated in the source.
do
{
stuff()
} while ( c ) ;
(loop []
(do something)
(when c
(recur)))
The first argument to loop can be used to define variables which are scoped to the loop. Values passed to recur are used for the next iteration.
IDENTIFICATION DIVISION.
PROGRAM-ID. "do while" loop.
DATA DIVISION.
WORKING-STORAGE SECTION.
01 boolean-c PIC x.
88 c-true PIC x VALUE 't'.
88 c-false PIC x VALUE 'f'.
PROCEDURE DIVISION.
PERFORM WITH TEST AFTER UNTIL c-false
PERFORM somthing
END-PERFORM
STOP RUN.
do {
someThing();
someOtherThing();
} while(c);
The block code is not repeated in the source.
do
{
stuff();
} while(c);
do
{
something;
somethingElse;
}
while (c);
do {
someThing();
someOtherThing();
} while(c);
def main(condition) do
case condition do
true -> main(condition)
false -> nil
end
end
do_while(Block, C) ->
case C(Block()) of
true -> do_while(Block, C);
false -> ok
end.
I'm assuming that C (the condition) has something to do with what happens on Block, therefore C is a predicate with one argument
do
call do_something
if (.not. c) exit
end do
doowhile c b = do a <- b; if c a
then doowhile c b
else return a
doowhile (=="") getLine
gg
do {
someThing();
someOtherThing();
} while(c);
The block code is not repeated in the source.
do f();
while (c);
(loop do (something)
while c)
do ... while(c);
Precisely same as plain C
do {
echo '.';
} while ($c);
repeat
Something;
SomethingElse;
until not c;
This is the correct implementation, it repeats the block until condition c is not true
repeat
Something;
SomethingElse;
until
c;
do {
doSomeStuff();
} while(c);
while True:
do_something()
if not c:
break
x = True
while x:
x = c
Python does not have a `do-while` loop syntax.
begin
# code
end while c
do {
someThing()
someOtherThing()
} while (c)
[
" do something "
c
] whileTrue: [].
Do
SomeThing()
SomeOtherThing()
Loop While c