mirror of
https://github.com/nushell/nushell.git
synced 2025-03-06 11:22:01 +01:00
6 lines
55 B
Plaintext
6 lines
55 B
Plaintext
|
def greet [name] {
|
||
|
$"hello ($name)"
|
||
|
}
|
||
|
|
||
|
greet nushell
|