IO · 6 of 42 ✓
Scala has a “shortcut” to Java’s System.out.println (as well as print, printf etc.)
System.out.println
print
printf
They are all defined in an object that is imported by default (scala.Predef).
scala.Predef
println("Hello World")