10 lines
148 B
Plaintext
10 lines
148 B
Plaintext
|
|
#!/usr/bin/env nu
|
||
|
|
|
||
|
|
def test_func [path: string, --verbose] {
|
||
|
|
print $"Path: ($path)"
|
||
|
|
print $"Verbose: ($verbose)"
|
||
|
|
[]
|
||
|
|
}
|
||
|
|
|
||
|
|
test_func "test"
|