From 4de9893b381a9aa38ff987ea242f4e662af0fb62 Mon Sep 17 00:00:00 2001 From: Ashita Prasad Date: Fri, 10 May 2024 07:25:26 +0530 Subject: [PATCH] Create hello.dart --- hello.dart | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 hello.dart diff --git a/hello.dart b/hello.dart new file mode 100644 index 0000000..f9b01a2 --- /dev/null +++ b/hello.dart @@ -0,0 +1,5 @@ +void main() { + for (var i = 0; i < 10; i++) { + print('hello ${i + 1}'); + } +}