That's okay, Sergey :) Enjoy your summer :) However, when you see
this, your summer vacation is already over :/ I wanted to say things,
anyway...
1. Please add support for multidimention arrays! Like, var cube3x3x3:
[Int] = new [Int](3, 3, 3)
then println(cube3x3x3[0, 2, 1]) or cube3x3x3[0][2][1]. Using Lists or
converting 3D coordinates to 1D to store 3D arrays is awkward :/
2. Is it possible to implement a "return" statement in Ether? Like,
def a(): Int {
var i = 3
return i
// lines after return are not executed
i = 4
return i }
3. Please implement "break" function to exit from block prematurely.
for (var i=0, i<50, i+=1) {
println(i)
if (i=5) break }
(makes "for" loop to i=5 only, not 50
2013/7/27, Sergey Basalaev <
sbas...@gmail.com>:
> --
> You received this message because you are subscribed to the Google Groups
> "Alchemy OS discussion group" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to
alchemy-os+...@googlegroups.com.
> For more options, visit
https://groups.google.com/groups/opt_out.
>
>
>