about summary refs log blame commit diff
path: root/users/wpcarro/scratch/rust/src/main.rs
blob: 671b3309305045a5f6f63241b27b948a9cf28c9f (plain) (tree)
1
2
3
4
5
6
7




                                    
       
          





                                                                                
                  
 
use serde::{Deserialize, Serialize};
use serde_json::{json, Value};

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

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

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