BigEd / atalan

Automatically exported from code.google.com/p/atalan
MIT License
1 stars 0 forks source link

Support array constants #96

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
Support array constants where possible.
Currently they are supported only in const array initializers.

For example:

::::::
for c in 5,6,8,9,13
::::::

the type of c may be derived from the type of array (it must be integers then) 
or alternate syntax declaring the type of variable may be used:

:::::::::::::
for c:color in red,green,blue,yellow
::::::::::::::

Original issue reported on code.google.com by rudla.ku...@gmail.com on 28 Sep 2011 at 4:49