Instructor: Stefan Mitsch
sbt
object o { val x = ... }class c { ... }
console
:quit
import
import o.*// use x
val x = ... // use x
:load
:load x.sc// use x
.scala
object
class
dir
ls
build.sbt
compile
sbt compile
test
sbt test
testOnly fp1tests
sbt "testOnly fp1tests"
~testOnly fp1tests
testOnly fp1tests -- -n fp1ex05