Standard for loop. Print i value fives times.
void main() {
   for (int i = 0; i < 5; i++) {
     print('i: ${i + 1}');
   }
 }Standard for loop. Print i value fives times.
void main() {
   for (int i = 0; i < 5; i++) {
     print('i: ${i + 1}');
   }
 }
Leave a Reply
You must be logged in to post a comment.