Skip to content

Latest commit

 

History

History
32 lines (20 loc) · 578 Bytes

ReadMe.md

File metadata and controls

32 lines (20 loc) · 578 Bytes

yamlscript/core

The YAMLScript compiler and runtime written in Clojure

Synopsis

(do
  (require '[yamlscript.compiler :as ys])
  (-> "foo: bar baz"
    ys/compile))
=> "(foo bar baz)\n"

Description

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.

Makefile usage

  • make test

    This runs the test suite. Run with make test v=1 for verbose output. Run with w=1 to show reflection warnings.