>>5
In Scala you basically have to do a compromise between prettiness and performance. It is possible to write about as fast Scala as Java, but you basically end up writing Java then. Eg. Scala's for-loops are slow as shit so all the code in benchmarksgame is written with while-loops even though for-loops would be more idiomatic Scala.