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

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

}