The YAMLScript compiler and runtime written in Clojure
(do
(require '[yamlscript.compiler :as ys])
(-> "foo: bar baz"
ys/compile))
=> "(foo bar baz)\n"
This directory builds the YAMLScript language written in Clojure.
The yamlscript.compiler/compile
function takes a YAMLScript input string and
compiles it to a Clojure code string.
-
make test
This runs the test suite. Run with
make test v=1
for verbose output. Run withw=1
to show reflection warnings.