Created
March 30, 2015 19:00
-
-
Save devoncarew/7eb492810a52928c8e0e to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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