|
|
|
|
|
by gokr
3648 days ago
|
|
Yes, correct. It's worth noting that echo is a prefix function so Spry supports both infix (first argument is on the left) and prefix functions, and if there is a series of keywords the parser will rewrite the keyword call to a prefix/infix call like this: array at: 1 put: 2 ==> array at:put: 1 2 Thus a keyword call is purely syntactic sugar. |
|