import 'dart:async'; void main() { final myFuture = Future(() { print("Hello from the future!"); return true; }); print("Done!"); }