mirror of
https://github.com/nushell/nushell.git
synced 2024-12-27 01:19:25 +01:00
8c0a2d3c15
* Finish updating * a couple improvements * Update renames * cleanup examples
30 lines
388 B
Markdown
30 lines
388 B
Markdown
---
|
|
title: let
|
|
layout: command
|
|
version: 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
|
|
```shell
|
|
> let x = 10
|
|
```
|
|
|
|
Set a variable to the result of an expression
|
|
```shell
|
|
> let x = 10 + 100
|
|
```
|
|
|