I have a simple toy project made of two classes:
object A {
var b = B()
}
class B {
....
}
I cannot use any IDE, because I need to use ssh.
I cannot compile the project because of the error:
A.scala:18: error: not found: value B
I compile using:
scalac *.scala
I tried to play around with the classpath but that did not solve.
Can you help me?