Skip to Content
Mastering Functional Programming
book

Mastering Functional Programming

by Anatolii Kmetiuk
August 2018
Intermediate to advanced
380 pages
10h 2m
English
Packt Publishing
Content preview from Mastering Functional Programming

Variables and functions

The backbone of the Scala language is variables and functions.

The variables are defined as follows:

scala> var foo = 3foo: Int = 3

Variables are defined using the var keyword followed by the name of the variable, followed by the value you would like to assign to the variable.

Variables defined in the preceding manner are mutable. This means that once they are assigned, you can modify them:

scala> var foo = 3foo: Int = 3scala> foo = 20foo: Int = 20

However, purely functional programming advocates against this style. Since Scala positions itself as a mixture of purely functional and object-oriented styles, it offers a way to define an immutable variable:

scala> val bar = 3bar: Int = 3

Now, if you try to modify is this ...

Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.
Start your free trial

You might also like

Learning Functional Programming

Learning Functional Programming

Jack Widman

Publisher Resources

ISBN: 9781788620796Supplemental Content