List and array expansion expressions (*.)

Gosu includes a special operator for array expansion and list expansion. The expansion operator is an asterisk followed by a period. For example, the following line of code gets the length property of every item in an array called names:

names*.length

See also