mirror of
https://github.com/nushell/nushell
synced 2025-01-04 09:18:57 +00:00
5 lines
56 B
Text
5 lines
56 B
Text
|
def greet [name] {
|
||
|
echo "hello" $name
|
||
|
}
|
||
|
|
||
|
greet "world"
|