Skip to content

Instantly share code, notes, and snippets.

@ruan65
Last active October 5, 2021 12:39
Show Gist options
  • Save ruan65/9f41e69cba9d804c76081b76f3148381 to your computer and use it in GitHub Desktop.
Save ruan65/9f41e69cba9d804c76081b76f3148381 to your computer and use it in GitHub Desktop.
void main() async {
Future.delayed(Duration(milliseconds: 500)).then((_) {
print('hi');
});
print('hello');
await Future.delayed(Duration(milliseconds: 1000));
print('hi');
print('hello');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment