7 lines
91 B
Dart
7 lines
91 B
Dart
void main() {
|
|
int val = 0;
|
|
do {
|
|
val++;
|
|
print(val);
|
|
} while (val % 6 != 0);
|
|
}
|