Skip to content

Instantly share code, notes, and snippets.

@simpleprogrammer-shared
Created July 4, 2016 18:38
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 simpleprogrammer-shared/0a45c3b43c83e9220430b73ce008592c to your computer and use it in GitHub Desktop.
Save simpleprogrammer-shared/0a45c3b43c83e9220430b73ce008592c to your computer and use it in GitHub Desktop.
Getting Started With Google’s Dart Language 2
import 'dart:html';
void main() {
var button = query("#theButton");
button.onClick.listen(addResult);
}
void addResult(Event e) {
var resultDiv = query("#resultDiv");
resultDiv.text = "You clicked the button";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment