git clone [email protected]:fp-tower/foundations-training.git
// or
git clone https://github.com/fp-tower/foundations-training.git
sbt test
If you don't have sbt
, you can find instructions here.
Open the file exercises/valfunction/ValueFunctionExercises.scala
and check your Scala plugin is working.
Start the sbt shell in your terminal by running sbt
.
Actions | Command to run inside sbt shell |
---|---|
Compile | exercises/compile |
Run tests | exercises/test |
Run test files | exercises/testOnly *ValueFunctionEx* |
Run specific tests | exercises/testOnly *ValueFunctionEx* -- -z "selectDigits" |