11 lines
216 B
Text
11 lines
216 B
Text
def example {
|
|
match [`run`, args] {
|
|
for x in args {
|
|
println(x)
|
|
}
|
|
}
|
|
}
|
|
|
|
example("Mary", "had", "a", "little", "lamb")
|
|
|
|
E.call(example, "run", ["Mary", "had", "a", "little", "lamb"])
|