summaryrefslogblamecommitdiff
path: root/test/files/continuations-run/ifelse1.scala
blob: 2ccc1ed73056465c83284627d84e0276b1aa9de9 (plain) (tree)
























                                         
// $Id$

import scala.util.continuations._


object Test {

  def test1(x:Int) = if (x <= 7)
    shift { k: (Int=>Int) => k(k(k(x))) }
  else
    x

  def test2(x:Int) = if (x <= 7)
    x
  else
    shift { k: (Int=>Int) => k(k(k(x))) }

  def main(args: Array[String]): Any = {
    println(reset(1 + test1(7)))
    println(reset(1 + test1(8)))
    println(reset(1 + test2(7)))
    println(reset(1 + test2(8)))
  }

}