mirror of
https://github.com/PartialVolume/shredos.x86_64.git
synced 2026-03-13 14:12:12 +00:00
7 lines
69 B
Nu
7 lines
69 B
Nu
|
|
#! /usr/bin/nu
|
||
|
|
def greet [name] {
|
||
|
|
["hello" $name]
|
||
|
|
}
|
||
|
|
|
||
|
|
greet "world"
|