serene-golang-implementation/src/main.rs

15 lines
228 B
Rust
Raw Normal View History

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