summaryrefslogtreecommitdiff
path: root/test/files/run/Course-2002-02.scala
diff options
context:
space:
mode:
authorpaltherr <paltherr@epfl.ch>2003-03-10 12:18:02 +0000
committerpaltherr <paltherr@epfl.ch>2003-03-10 12:18:02 +0000
commitc3ad24e873433606f96abb55071c31393fc90c03 (patch)
treef44cb2ec6915cd844ef727b8b068294a1acab48c /test/files/run/Course-2002-02.scala
parent3dd969e98d8347e9deed331f465f1b3fe0ee713e (diff)
downloadscala-c3ad24e873433606f96abb55071c31393fc90c03.tar.gz
scala-c3ad24e873433606f96abb55071c31393fc90c03.tar.bz2
scala-c3ad24e873433606f96abb55071c31393fc90c03.zip
- Removed a comment
Diffstat (limited to 'test/files/run/Course-2002-02.scala')
-rw-r--r--test/files/run/Course-2002-02.scala3
1 files changed, 0 insertions, 3 deletions
diff --git a/test/files/run/Course-2002-02.scala b/test/files/run/Course-2002-02.scala
index ea47c35c45..a39921b45b 100644
--- a/test/files/run/Course-2002-02.scala
+++ b/test/files/run/Course-2002-02.scala
@@ -3,9 +3,6 @@
//############################################################################
// $Id$
-//############################################################################
-// Course
-
module M0 {
def gcd(a: Int, b: Int): Int = if (b == 0) a else gcd(b, a % b);
def factorial(n: Int): Int = if (n == 0) 1 else n * factorial(n - 1);