# https://www.nushell.sh/book/scripts.html
def greet [name] {
  ["hello" $name]
}

greet "world"