jlezard
jlezard

Reputation: 1437

IntelliJ scala console, interactive developement

I have just started "coding" in Scala, coming from F# I am trying to find a way to have a similar environement.

Currently I am using IntelliJ 10.0.2. with the Scala plugin. On any given project I am trying to set up the following:

Is this possible?

Note:

Many thanks

Upvotes: 1

Views: 1595

Answers (2)

Dean Wampler
Dean Wampler

Reputation: 2151

Google for the sbt plugin for idea. SBT (Simple Build Tool) is an interactive build tool for Scala. It has a "console" command that loads the dependencies and your classes when it starts up. SBT offers other goodies, as well. The idea plugin lets you use the two together.

Upvotes: 3

Alefas
Alefas

Reputation: 3094

It's not possible like IntelliJ IDEA feature. You can add appropriate issue to Scala plugin issue tracker: http://youtrack.jetbrains.net/issues/SCL.

Upvotes: 2

Related Questions