mirror of
https://github.com/fluttergems/awesome-open-source-flutter-apps.git
synced 2026-04-04 22:19:03 +08:00
6 lines
82 B
Dart
6 lines
82 B
Dart
void main() {
|
|
for (var i = 0; i < 10; i++) {
|
|
print('hello ${i + 1}');
|
|
}
|
|
}
|