nushell/tests/fixtures/eval/script.nu

10 lines
95 B
Plaintext
Raw Normal View History

def main [] {
somefunc "foo"
}
def somefunc [
somearg: unknown_type
] {
echo $somearg
}