...

/

Printing in Scala

Printing in Scala

In the following lesson, you will be introduced to Scala's Hello World program and learn about Scala's different printing methods.

Hello World!

While learning a new programming language, the first program you usually learn to code is the famous ‘Hello World’ program.

Let’s see how the program looks in Scala:

Scala
print("Hello world!")

Printing Methods in Scala

Printing in Scala is quite straight forward. However, there are three different methods you can use depending on your objective.

  1. print
  2. println
...