Home Explore Blog CI



nushell

1st chunk of `lang-guide/chapters/flow_control/00_flow_control_overview.md`
00aa77181669c80606c8ee2092bbeb3c414b2f5f844c310900000001000001da
---
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
```

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.