Skip to content

Instantly share code, notes, and snippets.

@devoncarew
Created March 30, 2015 19:00
Show Gist options
  • Save devoncarew/7eb492810a52928c8e0e to your computer and use it in GitHub Desktop.
Save devoncarew/7eb492810a52928c8e0e to your computer and use it in GitHub Desktop.
class Foo {
int bar;
int baz() => bar;
}
void main() {
for (int i = 0; i < 5; i++) {
print('hello ${i + 1}');
}
Foo foo = new Foo();
foo.baz();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment