mirror of
https://github.com/nushell/nushell.git
synced 2024-12-27 01:19:25 +01:00
6 lines
55 B
Plaintext
6 lines
55 B
Plaintext
|
def greet [name] {
|
||
|
$"hello ($name)"
|
||
|
}
|
||
|
|
||
|
greet nushell
|