Home Explore Blog CI



nushell

lang-guide/chapters/flow_control/00_flow_control_overview.md
ac9ac59d5060e23aa2dbd2203813ddc9720438db91c36cb500000003000001da
---
next: ./if-else.md
---

# Flow Control

Nushell includes a number of flow control statements and expressions similar to other languages.

However, keep in mind that many Nushell operations will be performed using structured data as input and/or output. While structured data can be created using flow control statements in conjunction with mutable variables, a better solution in these cases is to use Filters.

See:

```nu
help commands | where category == filters
```

Chunks
00aa7718 (1st chunk of `lang-guide/chapters/flow_control/00_flow_control_overview.md`)
Title: Flow Control in Nushell
Summary
Nushell provides standard flow control statements and expressions. However, the documentation suggests using Filters in conjunction with mutable variables as a more effective solution for operations involving structured data.