buildroot/support/testing/tests/package/sample_nu.nu

7 lines
69 B
Plaintext

#! /usr/bin/nu
def greet [name] {
["hello" $name]
}
greet "world"