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

object Main  extends App {

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

}