Hello World in Scala
Every programming journey starts with Hello World. Let’s write our first Scala program and explore the elegance of this JVM language.
The Code
Create a file named HelloWorld.scala:
|
Every programming journey starts with Hello World. Let’s write our first Scala program and explore the elegance of this JVM language.
Create a file named HelloWorld.scala:
|
Scala’s type system is one of its most distinctive features: it is statically and strongly typed, yet rarely forces you to write type annotations by hand. The compiler infers types throughout …
Read more →Operators are the verbs of a programming language—they combine values into expressions that compute results. Scala supports the familiar arithmetic, comparison, logical, and bitwise operators you …
Read more →Showing 1–3 of 3 posts (page 1 of 1)