Lack of exceptions because of multiple return values is a mistake for me.
Interface system is good.
Pointers are bad, but necessary for a system language.
Finally array checked arrays in o.s. language. FFS people.
Agnostic about how the garbage collection can scale with parallelism.
Java can get 5% in code that is well written but java has decades of JIT experience.
No JIT -> probably good, but precludes some optimizations probably including the very useful escape-analysis.
Lack of parametric types is huge mistake, capable of sinking evolution of the language to the application domain.
Syntax has a good idea (names first), but lousy execution sometimes.
Inheritance... I like polymorphism, i hate inheritance. So the decision to separate the interfaces from it is HEVAN.
Overloading is a huge source of bugs both in programs and in compilers. Good riddance.
Map embedded type. Sucks if no alternative is possible to declare. And without generic types it will not. Parametric Types, for me but not for you bahhh!