Skip to content

Instantly share code, notes, and snippets.

@faizan1947
Created August 19, 2022 03:18
Show Gist options
  • Save faizan1947/0a65343462af6a708b243d90d8be6bd0 to your computer and use it in GitHub Desktop.
Save faizan1947/0a65343462af6a708b243d90d8be6bd0 to your computer and use it in GitHub Desktop.
for loop-dart
void main() {
buyMilk(10);
}
void buyMilk(int days){
for(int i=1;i<=days;i++){
print('buying milk on day $i');
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment