Warning, /education/cantor/src/backends/julia/scripts/variables_loader.jl is written in an unsupported language. File is not indexed.

0001 # Variable loading script.
0002 #
0003 # Install JLD script with `Pkg.add(JLD)` to use it
0004 import JLD
0005 for (var_name, value) in JLD.load("%1")
0006     s = symbol(var_name)
0007     @eval (($s) = ($value))
0008 end