8 lines
131 B
Text
8 lines
131 B
Text
|
|
good: function [name][
|
||
|
|
what: (attr'what) ?? "morning"
|
||
|
|
print ["Good" what name "!"]
|
||
|
|
]
|
||
|
|
|
||
|
|
good "Nick"
|
||
|
|
good.what:"night" "John"
|