mirror of
https://github.com/nushell/nushell.git
synced 2025-04-11 23:08:20 +02:00
10 lines
95 B
Plaintext
10 lines
95 B
Plaintext
def main [] {
|
|
somefunc "foo"
|
|
}
|
|
|
|
def somefunc [
|
|
somearg: unknown_type
|
|
] {
|
|
echo $somearg
|
|
}
|