CASC-Lang / Yakou

An experimental JVM Language inspired by Rust.
38 stars 2 forks source link

Support for array #5

Closed ChAoSUnItY closed 3 years ago

ChAoSUnItY commented 3 years ago

Both array initiation and index operator.

intArrayOf()
ChAoSUnItY commented 3 years ago

Array initialization is also a thing, it might be in this form:

a := { 10, 10, 10 }

or

a := i32[] { 10, 10 }

The second one is much clearer though.