summaryrefslogtreecommitdiff
path: root/test/files/run/Course-2002-10.scala
diff options
context:
space:
mode:
authorMartin Odersky <odersky@gmail.com>2003-03-31 08:29:52 +0000
committerMartin Odersky <odersky@gmail.com>2003-03-31 08:29:52 +0000
commitefd06d74f1621351c70456478b07a4ace6a9a211 (patch)
tree01ac7505ed4f33582974d4519dc3e33d601614d2 /test/files/run/Course-2002-10.scala
parent85c73ba918913361f925c23469c012096a93fb54 (diff)
downloadscala-efd06d74f1621351c70456478b07a4ace6a9a211.tar.gz
scala-efd06d74f1621351c70456478b07a4ace6a9a211.tar.bz2
scala-efd06d74f1621351c70456478b07a4ace6a9a211.zip
*** empty log message ***
Diffstat (limited to 'test/files/run/Course-2002-10.scala')
-rw-r--r--test/files/run/Course-2002-10.scala8
1 files changed, 4 insertions, 4 deletions
diff --git a/test/files/run/Course-2002-10.scala b/test/files/run/Course-2002-10.scala
index aabe99ba53..9a292937ca 100644
--- a/test/files/run/Course-2002-10.scala
+++ b/test/files/run/Course-2002-10.scala
@@ -3,7 +3,7 @@
//############################################################################
// $Id$
-module M0 {
+object M0 {
def addStream (s1: Stream[int], s2: Stream[int]): Stream[int] =
Stream.cons(s1.head + s2.head, addStream(s1.tail, s2.tail));
@@ -20,7 +20,7 @@ module M0 {
//############################################################################
-module M1 {
+object M1 {
def scale(x: double, s: Stream[double]): Stream[double] =
s map (e: double => e*x);
@@ -92,7 +92,7 @@ module M1 {
//############################################################################
-module M2 {
+object M2 {
class IntIterator(start: int) extends Iterator[int] {
var current: int = start;
@@ -120,7 +120,7 @@ module M2 {
//############################################################################
-module Test {
+object Test {
def main(args: Array[String]): Unit = {
M0.test;
M1.test;