|
Scala example source code file (ted.scala)
The Scala ted.scala source code
object App
{
def exponentiate(base : Double, exponent : Double) : Double =
(base, exponent) match
{
case (0, 0) => 1.0
case (b, 0) => 1.0
case (b, 1) => b
case (b, e) => b * exponentiate(b, e - 1)
}
def main(args : Array[String]) =
System.out.println(exponentiate(2, 2))
}
Other Scala examples (source code examples)Here is a short list of links related to this Scala ted.scala source code file: |
| ... this post is sponsored by my books ... | |
#1 New Release! |
FP Best Seller |
Copyright 1998-2024 Alvin Alexander, alvinalexander.com
All Rights Reserved.
A percentage of advertising revenue from
pages under the /java/jwarehouse
URI on this website is
paid back to open source projects.