mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-09-06 14:41:08 -09:00
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
Nu
7 lines
69 B
Nu
#! /usr/bin/nu
|
|
def greet [name] {
|
|
["hello" $name]
|
|
}
|
|
|
|
greet "world"
|