2
0
Fork 0
mirror of https://github.com/nushell/nushell synced 2025-02-24 11:27:14 +00:00
nushell/crates/nu-command/tests/commands/assignment/mod.rs
raccmonteiro b56ad92e25
++= appendAssign operator () ()
# Description

Closes  https://github.com/nushell/nushell/issues/7346



# Tests + Formatting
```
> mut a = [1 2 3]
> $a ++= [4 5 6]
> $a
[1 2 3 4 5 6]
```
2022-12-09 11:20:58 -05:00

1 line
19 B
Rust