ell/greet.ell

7 lines
79 B
Plaintext
Raw Normal View History

set greet {
arg _name
print 'hello ' @_name '\n'
}
greet world
greet creator