Skip to content

Instantly share code, notes, and snippets.

@aaronkelton
Created September 11, 2021 14:51
Show Gist options
  • Save aaronkelton/293dc4910bbcbe1514b50807e40ab4e6 to your computer and use it in GitHub Desktop.
Save aaronkelton/293dc4910bbcbe1514b50807e40ab4e6 to your computer and use it in GitHub Desktop.
Dart Function Declaration vs. Anonymous Function in Variable Assignment
void main() {
void functionDeclaration() => print("I'm definitely declared!");
var functionAssignment = () => print("I'm ostensibly anonymous.");
functionDeclaration();
functionAssignment();
print(functionDeclaration);
print(functionAssignment);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment