- Install Java JDK 8.0
- Install SBT
- Open a command line in the folder and run the command:
sbt
. This can take a long time, run "exit" to close sbt. sbt "runMain Test"
To run Figaro programs that you create:
- Open a command line prompt
- Navigate to your local FigaroWork directory
In order to run programs saved in subfolders you have to define the package name at the top of the folder: package <name_of_package>
To run programs in packages run: runMain <name_of_package>.<name_of_class>
For example: runMain Lab5.Ex1
Note: don't forget the quotes around the runMain command!