Files
RustPython/py_code_object/python_compiler/examples/compile.rs
2018-07-07 17:14:45 +02:00

8 lines
126 B
Rust

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