cbc/test/dowhile1.cb

12 lines
115 B
Plaintext

import stdio;
int
main(int argc, char **argv)
{
do {
puts("OK");
}
while (0);
return 0;
}