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