Created with <3 with dartpad.dev.
Created
June 1, 2023 07:25
-
-
Save thomasw-mitutoyo-ctl/76a973e007e930baf4bcc0ca1b3ab205 to your computer and use it in GitHub Desktop.
Lambda Syntax 2
This file contains hidden or 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 onDelete(int i) | |
{ | |
print(2); | |
print(i); | |
} | |
void main() | |
{ | |
var lambda = () => onDelete(5); | |
lambda(); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment