Scala is a general purpose programming language principally targeting the Java Virtual Machine. Designed to express common programming patterns in a concise, elegant, and type-safe way, it fuses both imperative and functional programming styles.
0
votes
1answer
24 views
Scala string interpolator: ad-hoc feature of general construct?
In Scala 2.10 a new string interpolator feature has been added (see here).
For example
val name = "James"
println(s"Hello, $name") // Hello, James
What is not clear to me is whether this feature ...
1
vote
0answers
279 views
Node.JS or Scala for mobile and web apps
I am coming from a php background with some python as well. I want to start working on a different language for both web and mobile development. I am also interested in real time apps dealing with ...