9 lines
100 B
Plaintext
9 lines
100 B
Plaintext
|
|
#!/usr/bin/env nu
|
||
|
|
|
||
|
|
# Try input/output types
|
||
|
|
def simple []: string -> string {
|
||
|
|
"hello"
|
||
|
|
}
|
||
|
|
|
||
|
|
simple
|