summaryrefslogtreecommitdiff
path: root/test/files/continuations-run/basics.scala
blob: 9df209b11c943baed7806908536e4e744888b5ce (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
// $Id$

import scala.util.continuations._


object Test {

  def m0() = {
    shift((k:Int => Int) => k(k(7))) * 2
  }

  def m1() = {
    2 * shift((k:Int => Int) => k(k(7)))
  }

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

    println(reset(m0()))
    println(reset(m1()))

  }

}