summaryrefslogtreecommitdiff
path: root/src/compiler/scala/tools/nsc/MainInterpreter.scala
blob: e4544c2550d8f0193536e283640f1c32a1603e38 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/* NSC -- new Scala compiler
 * Copyright 2005-2007 LAMP/EPFL
 * @author Lex Spoon
 */
// $Id$

package scala.tools.nsc

/** A command-line wrapper for the interpreter */
object MainInterpreter {
  def main(args: Array[String]) {
    (new InterpreterLoop).main(args)
  }
}