package guile
Install
dune-project
Dependency
Authors
Maintainers
Sources
md5=be5a3dae4018b36103f0af9f769a26f0
sha512=74136c9f933aea8d0403d5f5826cf7acb8824c985639d5a79eb2a7247c1bd1362eb61fd946f148e25e7b0283af2e36435c3d3ffe5f7e7913e27b70d941e97c09
doc/guile.guile/Guile/index.html
Module GuileSource
opaque type representing Guile scheme values.
init_with f calls f within a fresh Guile context.
with_continuation_barrier f runs the function f preventing any non-local control flow beyond the current calling context.
init () initialises the Guile context for the current thread of execution.
shell () starts execution of a Guile repl.
Note: assumes Guile.init has been called.
load filename loads the file at filename and evaluates it as a Guile scheme object.
undefined represents a nullary value in Guile, can be passed in as none values to functions with optional arguments.
eval ?state s evaluates a Guile scheme s-expression s in execution state state.
eval_string s evaluates a string s as a Guile scheme s-expression
to_string ?printer v returns a string representation of a Guile scheme value v.