Skip to content

do

The do keyword is always used alongside the while keyword to compose do-while statements; the do-while in Bjarne language is as same as in C++. The first iteration of a do-while block is executed without evaluating its condition.

Syntax

do
{
}
while (condition);