|
Scala example source code file (t1821.scala)
The Scala t1821.scala source code// $Id$ import scala.util.continuations._ object Test { def suspended[A](x: A): A @suspendable = x def test1[A](x: A): A @suspendable = suspended(x) match { case x => x } def test2[A](x: List[A]): A @suspendable = suspended(x) match { case List(x) => x } def test3[A](x: A): A @suspendable = x match { case x => x } def test4[A](x: List[A]): A @suspendable = x match { case List(x) => x } def main(args: Array[String]) = { println(reset(test1())) println(reset(test2(List(())))) println(reset(test3())) println(reset(test4(List(())))) } } Other Scala examples (source code examples)Here is a short list of links related to this Scala t1821.scala source code file: |
... this post is sponsored by my books ... | |
#1 New Release! |
FP Best Seller |
Copyright 1998-2024 Alvin Alexander, alvinalexander.com
All Rights Reserved.
A percentage of advertising revenue from
pages under the /java/jwarehouse
URI on this website is
paid back to open source projects.