sample_nu.nu 69 B

123456
  1. #! /usr/bin/nu
  2. def greet [name] {
  3. ["hello" $name]
  4. }
  5. greet "world"