Списки


# Список
d := List clone append(30, 10, 5, 20)

# И операции над ним
d size println
d := d sort
d first
d last
d at(2)
d remove(30)
d atPut(1, 123)
d select(>10)

# select only first
d detect(>10)

# the same:
d map(*2)
d map(v,v*2)