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

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
    Lists.run

}