about summary refs log tree commit diff
path: root/users/wpcarro/scratch/rust/src/main.rs
diff options
context:
space:
mode:
Diffstat (limited to 'users/wpcarro/scratch/rust/src/main.rs')
-rw-r--r--users/wpcarro/scratch/rust/src/main.rs9
1 files changed, 3 insertions, 6 deletions
diff --git a/users/wpcarro/scratch/rust/src/main.rs b/users/wpcarro/scratch/rust/src/main.rs
index da9e3d3c63..671b330930 100644
--- a/users/wpcarro/scratch/rust/src/main.rs
+++ b/users/wpcarro/scratch/rust/src/main.rs
@@ -3,16 +3,13 @@ use serde_json::{json, Value};
 
 mod display;
 mod json;
+mod rc;
+mod stdin;
 
 ////////////////////////////////////////////////////////////////////////////////
 // Main
 ////////////////////////////////////////////////////////////////////////////////
 
 fn main() {
-    let john: display::Person = display::Person {
-        fname: "John".to_string(),
-        lname: "Cleese".to_string(),
-        age: 82,
-    };
-    println!("Person: {}", john)
+    rc::example();
 }