summaryrefslogtreecommitdiffstats
path: root/Scala/sandbox/0-main.scala
blob: b68b57e872767af60809cd5c98b069ab78850bdd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15

object Main  extends App {

  def Main(args: Array[String]) =
    Sqrt.run
    Recursion.run
    Curry.run
    Rationals.run
    IntSet.run
    IntList.run
    Natural.run
    Variance.run
    PatternMatching.run

}