nushell-plugins/nushell/tests/fixtures/eval/script.nu

10 lines
95 B
Text
Raw Normal View History

2025-06-27 02:33:44 +01:00
def main [] {
somefunc "foo"
}
def somefunc [
somearg: unknown_type
] {
echo $somearg
}