mirror of
https://github.com/nushell/nushell.git
synced 2024-11-22 16:33:37 +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 }
|