Skip to content

Instantly share code, notes, and snippets.

@aruld
Created October 19, 2011 18:26
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 aruld/1299205 to your computer and use it in GitHub Desktop.
Save aruld/1299205 to your computer and use it in GitHub Desktop.
My first Dart script
class foobar {
foo() {
return '00';
}
bar() {
return 7;
}
}
main() {
var fb = new foobar();
print(fb.foo() is String);//true
print(fb.bar() is int);//true
var str = fb.foo() + fb.bar();
print(str is String);//true
print(str);//007
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment