A Julia prototype implementation of the Dice probabilistic programming language. See https://github.com/SHoltzen/dice
Install Julia 1.7 or higher using these instructions.
Clone the repository and start julia in project mode for current folder:
cd Dice.jl
julia --project
Install Dice and update dependencies (one can also use precompile
or build
):
] up
Press CTRL-C or backspace to exit from the pkg terminal and return to Julia REPL.
One can now run a program from the Julia REPL:
include("examples/graph_reachability.jl")
Or from the command line:
julia --project examples/graph_reachability.jl