7 lines
77 B
Smalltalk
7 lines
77 B
Smalltalk
int a = 0;
|
|
|
|
do
|
|
{
|
|
a += 1;
|
|
Console.WriteLine(a);
|
|
} while (a % 6 != 0);
|