nushell/example.nu

5 lines
56 B
Text
Raw Normal View History

2021-10-03 18:23:23 +00:00
def greet [name] {
echo "hello" $name
}
greet "world"