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

object Main  extends App {

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

}