Changes by: Jason Hickey (jyh at cs.caltech.edu)
Date: 2004-07-25 21:15:30 -0700 (Sun, 25 Jul 2004)
Revision: 471
Log message:
Added arrays, so finally we can have files with spaces in their name.
The syntax is:
$(array <val1>, ..., <valn>)
or
X[] =
<val_1>
...
<val_n>
The destructor is the usual $(nth <index>, <array>).
Arrays expand with spaces between the names.
X[] =
a b
c d e
f
println(X = $(X))
println(SUFFIX = $(addsuffix .foo, $(X))
Prints:
X = a b c d e f
SUFFIX = a b.foo c d e.foo f.foo