summaryrefslogtreecommitdiff
path: root/test/files/run/Course-2002-10.scala
diff options
context:
space:
mode:
authormichelou <michelou@epfl.ch>2003-03-21 14:45:33 +0000
committermichelou <michelou@epfl.ch>2003-03-21 14:45:33 +0000
commit54952ba17e2c99e3c842068b7b091ebbf4093921 (patch)
treef35a2fe262e6f853560ceafd7d81ab3f8ea7d95e /test/files/run/Course-2002-10.scala
parent1c311b1828950539858292dc2c3bcc4a184e890a (diff)
downloadscala-54952ba17e2c99e3c842068b7b091ebbf4093921.tar.gz
scala-54952ba17e2c99e3c842068b7b091ebbf4093921.tar.bz2
scala-54952ba17e2c99e3c842068b7b091ebbf4093921.zip
reduced value from 100 to 30 in module M2 (memo...
reduced value from 100 to 30 in module M2 (memory problem on Windoze)
Diffstat (limited to 'test/files/run/Course-2002-10.scala')
-rw-r--r--test/files/run/Course-2002-10.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/files/run/Course-2002-10.scala b/test/files/run/Course-2002-10.scala
index 3ec3440e80..aabe99ba53 100644
--- a/test/files/run/Course-2002-10.scala
+++ b/test/files/run/Course-2002-10.scala
@@ -111,7 +111,7 @@ module M2 {
}
def test = {
- val i = (new PrimeIterator()).take(100);
+ val i = (new PrimeIterator()).take(30);
System.out.print("prime numbers:");
while (i.hasNext) { System.out.print(" " + i.next); }
System.out.println();