Skip to content

Instantly share code, notes, and snippets.

@ulisseshen
Last active January 29, 2025 20:27
Show Gist options
  • Save ulisseshen/eae8072e876eccf7ec8e433ac04f12d3 to your computer and use it in GitHub Desktop.
Save ulisseshen/eae8072e876eccf7ec8e433ac04f12d3 to your computer and use it in GitHub Desktop.
void main() async {
print('A');
await Future(() {
print('B');
Future(() => print('C'));
Future.microtask(() => print('D'));
Future(() => print('E'));
print('F');
});
print('G');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment