Skip to content

Instantly share code, notes, and snippets.

@thomasw-mitutoyo-ctl
Created June 1, 2023 07:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save thomasw-mitutoyo-ctl/76a973e007e930baf4bcc0ca1b3ab205 to your computer and use it in GitHub Desktop.
Save thomasw-mitutoyo-ctl/76a973e007e930baf4bcc0ca1b3ab205 to your computer and use it in GitHub Desktop.
Lambda Syntax 2
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