summaryrefslogtreecommitdiff
path: root/test/files/run/bigints.scala
blob: f1328274c60e5f881e1bf44090318cc9ca359d46 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
object Test extends Application {
  import BigInt._

  val x: BigInt = 1
  val y = x + 1
  val z = 1 + y
  System.out.println(z)
  System.out.println(z <= 3)
  System.out.println(3 < z)
  System.out.println(z == 3)
  System.out.println(3 == z)

}