Skip to content

Instantly share code, notes, and snippets.

@ncalm
Last active February 15, 2023 17:33
Show Gist options
  • Select an option

  • Save ncalm/42abcf05b1c47b546e56f6c222e8c8ca to your computer and use it in GitHub Desktop.

Select an option

Save ncalm/42abcf05b1c47b546e56f6c222e8c8ca to your computer and use it in GitHub Desktop.
This lambda function adds two numbers together
/*
Name: ADD
Description: Adds two numbers
Parameters:
- a: a number
- b: also a number
*/
ADD = LAMBDA(a, b, a + b);
SUBTRACT = LAMBDA(a, b, a - b);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment