mirror of
https://github.com/nushell/nushell.git
synced 2024-11-26 02:13:47 +01:00
3 lines
100 B
Plaintext
3 lines
100 B
Plaintext
|
def animals [] { ["cat", "dog", "eel" ] }
|
||
|
def my-command [animal: string@animals] { print $animal }
|