Skip to main content

Lambda

In Crabby, the lambdas keyword is for Math equating and basic maths, Lambda creates small anonymous functions, just like in Python!

For example:

let x = lambda(a): {
return a + 10
}

print(x(5))