bosh_compiler 0.0.0

Compiler backend for bosh, a Lisp that compiles to Scratch 3.0 project files
Documentation
1
2
3
4
5
6
7
8
9
10
//! This package exposes the backend of the compiler for bosh, a lisp dialect that
//! compiles to Scratch 3.0 JSON.

extern crate pest;
#[macro_use] extern crate pest_derive;

extern crate serde;
#[macro_use] extern crate serde_derive;

pub mod compiler;