次のように sbt コンソールを起動します。
alex@alex-K43U:~/projects$ sbt console
[info] Set current project to default-8aceda (in build file:/home/alex/projects/)
[info] Starting scala interpreter...
[info]
Welcome to Scala version 2.9.2 (OpenJDK Client VM, Java 1.6.0_24).
Type in expressions to have them evaluated.
Type :help for more information.
scala>
次のtest.scala
ような (/home/alex/projects/test.scala) ファイルがあります。
def timesTwo(i: Int): Int = {
println("hello world")
i * 2
}
コンソールで次のようなことができるようにする方法:
scala> timesTwo
そして、関数の値を出力しますか?