Skip to content

Instantly share code, notes, and snippets.

@nelsonic
Created June 12, 2020 17:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nelsonic/560f88da44b108ffe34e6979079246ea to your computer and use it in GitHub Desktop.
Save nelsonic/560f88da44b108ffe34e6979079246ea to your computer and use it in GitHub Desktop.
How to use Variables in Dart
main() {
var name = 'Alex'; // or whatever your name is!
print('Hello $name!'); // Hello Alex!
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment