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