nushell/docs/commands/let.md
JT 8c0a2d3c15
Auto-generate markdown command docs (#4451)
* Finish updating

* a couple improvements

* Update renames

* cleanup examples
2022-02-13 21:22:51 -05:00

388 B

title layout version
let command 0.59.0

Create a variable and give it a value.

Signature

> let (var_name) (initial_value)

Parameters

  • var_name: variable name
  • initial_value: equals sign followed by value

Examples

Set a variable to a value

> let x = 10

Set a variable to the result of an expression

> let x = 10 + 100