apoch / epoch-language

Home of the Epoch Programming Language Project
Other
72 stars 3 forks source link

Replace array construction syntax #65

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
The current array construction syntax is fragile and will not work with 
higher-order types in any sensible way. Replace this:

foo = array(integer, 1, 2, 3)

With this:

foo = integer[1, 2, 3]

Original issue reported on code.google.com by don.ap...@gmail.com on 23 Sep 2010 at 11:14

GoogleCodeExporter commented 9 years ago
Arrays need some thought now that we have true generics.

Original comment by don.ap...@gmail.com on 12 Apr 2013 at 5:22