aboutsummaryrefslogblamecommitdiff
path: root/tests/run/power.scala
blob: 2bb66fa8df861ada74ee410e28276f28e758ea91 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
















                                          
object Test {

  @dotty.annotation.inline
  def power(x: Double, n: Int): Double =
    if (n == 0) 1.0
    else if (n == 1) x
    else {
      val y = power(x, n / 2)
      if (n % 2 == 0) y * y else y * y * x
    }

  def main(args: Array[String]): Unit = {
    println(power(2.0, 10))
    def x = 2.0
    println(power(x, 11))
  }
}