This project is for the homework with the same name using the programming language Scala.
To compile a scala file into dist directory, use the following syntax:
scalac -d dist <filename>.scala
Example:
scalac -d dist Hello.scala
To run the compiled code, go to the compiled file location (default is dist), and use the following syntax:
scala <filename>
Example:
scala Hello
To run the CMDExample with arguments, use the following syntax:
scala CMDExample <list of args>
Example:
scala CMDExample Hello William