summaryrefslogtreecommitdiff
path: root/src/compiler/scala/tools/nsc/Main.scala
diff options
context:
space:
mode:
authormichelou <michelou@epfl.ch>2005-12-22 01:52:19 +0000
committermichelou <michelou@epfl.ch>2005-12-22 01:52:19 +0000
commit5faf35dbd6cab28010a1822a459eb0eb6f4d1c75 (patch)
treeaa7ee11fb61638decd5938487231b06e58d1fd6b /src/compiler/scala/tools/nsc/Main.scala
parentfe815b63e9fc81853bfa9c864544a3d2691ed4f5 (diff)
downloadscala-5faf35dbd6cab28010a1822a459eb0eb6f4d1c75.tar.gz
scala-5faf35dbd6cab28010a1822a459eb0eb6f4d1c75.tar.bz2
scala-5faf35dbd6cab28010a1822a459eb0eb6f4d1c75.zip
- added property COPYRIGHT
Diffstat (limited to 'src/compiler/scala/tools/nsc/Main.scala')
-rw-r--r--src/compiler/scala/tools/nsc/Main.scala6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/compiler/scala/tools/nsc/Main.scala b/src/compiler/scala/tools/nsc/Main.scala
index 58b352db61..8a40c8a42c 100644
--- a/src/compiler/scala/tools/nsc/Main.scala
+++ b/src/compiler/scala/tools/nsc/Main.scala
@@ -1,5 +1,5 @@
/* NSC -- new scala compiler
- * Copyright 2005 LAMP/EPFL
+ * Copyright 2005-06 LAMP/EPFL
* @author Martin Odersky
*/
// $Id$
@@ -17,7 +17,9 @@ object Main extends Object with EvalLoop {
System.getProperty("scala.product", "scalac");
val VERSION: String =
System.getProperty("scala.version", "unknown version");
- val versionMsg = PRODUCT + " " + VERSION + " -- (c) 2002-05 LAMP/EPFL";
+ val COPYRIGHT: String =
+ System.getProperty("scala.copyright", "(c) 2002-06 LAMP/EPFL");
+ val versionMsg = PRODUCT + " " + VERSION + " -- " + COPYRIGHT;
val prompt = "\nnsc> ";
private var reporter: ConsoleReporter = _;