It is always good to have a point of reference. Google recently published their own language for the Java Virtual Machine, Noop <http://code.google.com/p/noop/>. How do dodo <http://dodo.sourceforge.net> features compare to the proposed Noop features? Read on.
Fundamentals
------------
* No primitive types, everything is an Object.
-- The dodo type system can manage both, as an...
Dodo has a special syntax for intervals. Intervals are used mainly to specify an index range in a list, but they can have more uses. At the moment I envision their use only for enumerable types like integers.
The current documentation contains an example of interval, which is the form:
n+
That notation means "n or more". Used as a list index, it allows to select all elements...