Skip to content

Instantly share code, notes, and snippets.

@Dalmangyi
Last active August 30, 2019 04:31
Show Gist options
  • Save Dalmangyi/7eb3560e231a076712a65229b18aa656 to your computer and use it in GitHub Desktop.
Save Dalmangyi/7eb3560e231a076712a65229b18aa656 to your computer and use it in GitHub Desktop.
Dart Async Await Exam
import 'dart:async';
int a = 0;
void main() async {
print('first');
func();
print('second');
await func();
print('third');
}
void func() async {
await Future.delayed(Duration(milliseconds:1500), ()=> print('--async-- : ${a++}'));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment