Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there a comparison between Scala and Google 'Go' language (feature by feature)? [closed]

I wonder if someone can produce a comparison between Scala and Google 'Go' language (feature by feature, like concurrency models, collections, etc.)?

like image 858
Roman Kagan Avatar asked Nov 11 '09 16:11

Roman Kagan


1 Answers

Better compare it to C (or C++ or D).

As far as I do understand the intent of this language is to replace C/C++ not Java/Scala (VM languages). Go has no exceptions, assertions, inheritance. This is only bearable for C programmers.

I would like to see the new parts not present in other languages (or newly combined in Go). Especially how programs should be designed with the minimalistic type system.

like image 80
Thomas Jung Avatar answered Sep 22 '22 14:09

Thomas Jung