Files
RustPython/VM/python_compiler/examples/compile.rs
2018-06-06 11:28:06 +02:00

8 lines
126 B
Rust

extern crate python_compiler;
use python_compiler::python_compiler::compile;
fn main() {
println!("{:?}", compile());
}