about summary refs log blame commit diff
path: root/users/wpcarro/scratch/rust/src/main.rs
blob: 185e7236c5f657ee68b1eec277fa0bd433e0acf8 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12




                                    
          





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

mod display;
mod json;
mod stdin;

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

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