Create hello.dart

This commit is contained in:
Ashita Prasad
2024-05-10 07:25:26 +05:30
committed by GitHub
parent 06335393a8
commit 4de9893b38

5
hello.dart Normal file
View File

@@ -0,0 +1,5 @@
void main() {
for (var i = 0; i < 10; i++) {
print('hello ${i + 1}');
}
}