Created
September 11, 2021 14:51
-
-
Save aaronkelton/293dc4910bbcbe1514b50807e40ab4e6 to your computer and use it in GitHub Desktop.
Dart Function Declaration vs. Anonymous Function in Variable Assignment
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
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