mirror of
https://github.com/nushell/nushell
synced 2025-01-01 15:58:55 +00:00
3 lines
100 B
Text
3 lines
100 B
Text
|
def animals [] { ["cat", "dog", "eel" ] }
|
||
|
def my-command [animal: string@animals] { print $animal }
|