1
2
3
4
5
6
7
8
9
//! Compile a Python AST or source code into bytecode consumable by RustPython or
//! (eventually) CPython.

#[macro_use]
extern crate log;

pub mod compile;
pub mod error;
mod symboltable;