Skip to content

Latest commit

 

History

History
31 lines (19 loc) · 1 KB

README.md

File metadata and controls

31 lines (19 loc) · 1 KB

PMP-Template

Setup

  • 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"

Follow the quick start

How to run Figaro programs

To run Figaro programs that you create:

  1. Open a command line prompt
  2. Navigate to your local FigaroWork directory

Example test run

Example test run

Example run from package

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

Example run from package

Note: don't forget the quotes around the runMain command!