foreach: A Collection Method
In this lesson, you will be given a quick introduction to the foreach method.
Introduction
As this chapter deals with collections, it is important to know how to print the elements in a collection.
We cannot simply use println
or print
as they are used to print single values and collections are a collection of values. For this reason, Scala provides the foreach
...