Skip to content

Instantly share code, notes, and snippets.

@skyjur
Created January 24, 2019 06:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save skyjur/a57a500d4593aebe1bad0ed79376016c to your computer and use it in GitHub Desktop.
Save skyjur/a57a500d4593aebe1bad0ed79376016c to your computer and use it in GitHub Desktop.
main() async {
List<String> testList = ['sfs','sdfsdf', 'sfdsf'];
for(final value in testList) {
await Future.delayed(Duration(seconds: 1));
print('Writing another word $value');
};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment