summaryrefslogtreecommitdiff
path: root/test/files/run/Course-2002-02.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/run/Course-2002-02.scala')
-rw-r--r--test/files/run/Course-2002-02.scala1
1 files changed, 0 insertions, 1 deletions
diff --git a/test/files/run/Course-2002-02.scala b/test/files/run/Course-2002-02.scala
index e688850f9a..b8650108ed 100644
--- a/test/files/run/Course-2002-02.scala
+++ b/test/files/run/Course-2002-02.scala
@@ -1,7 +1,6 @@
//############################################################################
// Programmation IV - 2002 - Week 02
//############################################################################
-// $Id$
object M0 {
def gcd(a: Int, b: Int): Int = if (b == 0) a else gcd(b, a % b)