mirror of
https://github.com/nushell/nushell
synced 2024-12-28 14:03:09 +00:00
10 lines
95 B
Text
10 lines
95 B
Text
|
def main [] {
|
||
|
somefunc "foo"
|
||
|
}
|
||
|
|
||
|
def somefunc [
|
||
|
somearg: unknown_type
|
||
|
] {
|
||
|
echo $somearg
|
||
|
}
|