about summary refs log tree commit diff
path: root/users/wpcarro/scratch/rust/src/main.rs
use serde::{Deserialize, Serialize};
use serde_json::{json, Value};

mod display;
mod json;
mod rc;
mod stdin;

////////////////////////////////////////////////////////////////////////////////
// Main
////////////////////////////////////////////////////////////////////////////////

fn main() {
    rc::example();
}