|
Scala example source code file (message.scala-2.scala)
The Scala message.scala-2.scala source code
/* The Computer Language Shootout
http://shootout.alioth.debian.org/
contributed by Philipp Haller
*/
import scala.actors._
import scala.actors.Actor._
import scala.actors.scheduler.SingleThreadedScheduler
object message {
def main(args: Array[String]) = {
val n = Integer.parseInt(args(0)); val nActors = 50; val finalSum = n * nActors
Scheduler.impl = new SingleThreadedScheduler
def beh(next: Actor, sum: Int) {
react {
case value: Int =>
val j = value + 1; val nsum = sum + j
if (next == null && nsum >= finalSum) {
Console.println(nsum)
System.exit(0)
}
else {
if (next != null) next ! j
beh(next, nsum)
}
}
}
def actorChain(i: Int, a: Actor): Actor =
if (i > 0) actorChain(i-1, actor(beh(a, 0))) else a
val firstActor = actorChain(nActors, null)
var i = n; while (i > 0) { firstActor ! 0; i = i-1 }
Scheduler.shutdown()
}
}
Other Scala examples (source code examples)Here is a short list of links related to this Scala message.scala-2.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.