Apologies as this is likely a dumb question but I am new to Scala.
Trying to run the following project from the command line
https://github.com/falconair/ComposingContracts
But getting the following
justin@justin-ThinkPad-X240:~/work/ComposingContracts$ scala src/main/scala/Main.scala
/home/justin/work/ComposingContracts/src/main/scala/Main.scala:5: error: not found: value ComposingContracts
import ComposingContracts._
^
one error found
justin@justin-ThinkPad-X240:~/work/ComposingContracts$
The structure of the code looks like I should be able to run it from the command line. This looks to me like it's probably some kind of classpath error. But I don't know enough Scala to be sure.
Thanks in advance.