let

.let value:{Dynamic} body:{Lambda} -> Any

Defines a temporary variable that can be used in the lambda body. Example:

.let {world}
Hello, **.1**!

Return

the evaluation of body with value as a parameter

Parameters

value

value to use as a temporary variable

body

content to evaluate with the temporary variable. Accepts 1 parameter (value itself)