Skip to content

Instantly share code, notes, and snippets.

@filiph
Last active December 19, 2020 11:58
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save filiph/2adf8bfec52ee6ff756f29b7a14b9a26 to your computer and use it in GitHub Desktop.
Save filiph/2adf8bfec52ee6ff756f29b7a14b9a26 to your computer and use it in GitHub Desktop.
The most minimal 'Hello World' web app in Dart
<html>
<head>
<script type="application/dart" src="main.dart"></script>
<script src="packages/browser/dart.js"></script>
</head>
</html>
main() => print("Hello World");
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