mirror of
https://github.com/nushell/nushell
synced 2025-01-02 16:29:00 +00:00
6 lines
55 B
Text
6 lines
55 B
Text
|
def greet [name] {
|
||
|
$"hello ($name)"
|
||
|
}
|
||
|
|
||
|
greet nushell
|