Examples
Some scripts are provided in /examples/ and in /test/scripts/ to test the package functionality.
How to run scripts
To run the above scripts, you need to activate an environment and import all the needed packages.
In a Julia REPL, choose a directory where to create the environment:
julia> cd("path/to/env/dir")Enter the Pkg REPL by pressing
]from the Julia REPL:julia> ]Activate the environment:
pkg> activate .addthe FlexPlan package:pkg> add FlexPlanaddevery package required by the script. For example, if the script containsimport Plots, then executepkg> add Plots