serene-golang-implementation/src/main.rs

14 lines
239 B
Rust
Raw Normal View History

2020-06-16 09:27:32 +01:00
extern crate llvm_sys;
2020-06-14 21:02:31 +01:00
use std::string::String;
pub mod ast;
pub mod collections;
2020-06-16 09:27:32 +01:00
pub mod reader;
2020-06-05 22:23:14 +01:00
fn main() {
2020-06-14 21:23:39 +01:00
let input = String::from("(println \">>>>>\" '(+ 2 -3))");
2020-06-14 21:02:31 +01:00
2020-06-16 09:27:32 +01:00
println!("{:?}", reader::read_string(&input).unwrap());
2020-06-05 22:23:14 +01:00
}