Scala programming environment

Possible duplicate:
What is the IDE for Scala 2.8?

I study Scala by reading Odersky et al's Scala Programming books.

What programming environment do people use for scala?

I used TextMate and emacs and am trying to use eclipse for Java.

+3
source share
3 answers

There are several options with varying degrees of maturity:

  • Emacs has good bindings,
  • Eclipse has a plugin;
  • Intellij IDEA has a Scala plugin and community version;
  • NetBeans has a plugin for Scala (I believe that many people on the side of Raise Us).

, IDE, (, IDE):

  • SBT (Scala Build Tool) , Maven, , Scala;
  • Maven ( Maven);
  • -

IDEA , Eclipse, Eclipse . , Maven. Eclipse maven, IDEA .

, . , Eclipse, IDEA. , Java.

+5

IntelliJ IDEA Community Edition Scala IDEA

+2

, , , sbt REPL .

sbt "scratch" mode, scala, , jar. - sbt, sbt script/bat, scala project/build.properties.

Then you can go to the console and get the files in jar files in the class path. You can also use the command run, and it will prompt you to run which class (if you have several instances in the current directory).

+2
source

Source: https://habr.com/ru/post/1758012/


All Articles