summaryrefslogtreecommitdiff
path: root/test/files/continuations-run/basics.scala
blob: b63710bc6445e66365da957e330ae8acb6584125 (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()))
    
  }
  
}