hello.dart
// top-level function where app execution starts void main(){ print("Hello World!"); // Print to console }
Every app has a main() function
Comments
// top-level function where app execution starts void main(){ print("Hello World!"); // Print to console }
Every app has a main() function