Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
$ brew install sbt

SBTの動作確認

Code Block
$ sbt console
Code Block
[info] Set current project to scala-repl-with-libs (in build file:/Users/yusuke.kuoka/sandbox/scala-repl-with-libs/)
[info] Starting scala interpreter...
[info]
Welcome to Scala version 2.10.2 (Java HotSpot(TM) 64-Bit Server VM, Java 1.7.0_45).
Type in expressions to have them evaluated.
Type :help for more information.
scala>
Code Block
scala> println("Hello World!")
Hello World!
scala>mkdir scala-playground
$ cd scala-playground
Code Block
$ sbt

sbtが起動して、以下のようなプロンプトが表示されればOKです。

Code Block
>