Skip to content

Latest commit

 

History

History
38 lines (29 loc) · 762 Bytes

nested-functions.md

File metadata and controls

38 lines (29 loc) · 762 Bytes
layout title discourse partof num next-page previous-page redirect_from
tour
Nested Methods
true
scala-tour
9
multiple-parameter-lists
higher-order-functions
/tutorials/tour/nested-functions.html

In Scala it is possible to nest method definitions. The following object provides a factorial method for computing the factorial of a given number:

{% scalafiddle %}

 def factorial(x: Int): Int = {
    def fact(x: Int, accumulator: Int): Int = {
      if (x <= 1) accumulator
      else fact(x - 1, x * accumulator)
    }  
    fact(x, 1)
 }

 println("Factorial of 2: " + factorial(2))
 println("Factorial of 3: " + factorial(3))

{% endscalafiddle %}

The output of this program is:

Factorial of 2: 2
Factorial of 3: 6