Last active
December 19, 2020 11:58
-
-
Save filiph/2adf8bfec52ee6ff756f29b7a14b9a26 to your computer and use it in GitHub Desktop.
The most minimal 'Hello World' web app in Dart
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <html> | |
| <head> | |
| <script type="application/dart" src="main.dart"></script> | |
| <script src="packages/browser/dart.js"></script> | |
| </head> | |
| </html> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| main() => print("Hello World"); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: minimal_hello_world | |
| dependencies: | |
| browser: any |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment