bea949996e
Load sample script support/testing/tests/package/sample_nu.nu onto the target and verify proper execution by nushell Signed-off-by: Sebastian Weyer <sebastian.weyer@smile.fr> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
7 lines
69 B
Plaintext
7 lines
69 B
Plaintext
#! /usr/bin/nu
|
|
def greet [name] {
|
|
["hello" $name]
|
|
}
|
|
|
|
greet "world"
|