aboutsummaryrefslogtreecommitdiff
path: root/tests/shared/src/main/scala/magnolia/main.scala
blob: 4a9347a41fb0cf96f0ca11c9af903429eee37285 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
package magnolia

import examples._
import examples.Show._

object Main {
  def main(args: Array[String]): Unit = {

    val tree1: Tree = Branch(Branch(Leaf(1), Leaf(2)), Leaf(3))
    val tree2: Tree = Branch(Leaf(1), Leaf(2))

    println(tree1.show)
    println(tree1 isEqualTo tree1)
    println(tree1 isEqualTo tree2)

    println(Branch(Branch(Leaf(1), Leaf(2)), Leaf(3)).show)
    
    println(List[Entity](Person("John Smith",
      Address(List("1 High Street", "London", "SW1A 1AA"),
        Country("UK", "GBR", false)))).show)

  }
}