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.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/users/wpcarro/scratch/rust/src/main.rs b/users/wpcarro/scratch/rust/src/main.rs
index 185e7236c5..671b330930 100644
--- a/users/wpcarro/scratch/rust/src/main.rs
+++ b/users/wpcarro/scratch/rust/src/main.rs
@@ -3,6 +3,7 @@ use serde_json::{json, Value};
 
 mod display;
 mod json;
+mod rc;
 mod stdin;
 
 ////////////////////////////////////////////////////////////////////////////////
@@ -10,5 +11,5 @@ mod stdin;
 ////////////////////////////////////////////////////////////////////////////////
 
 fn main() {
-    stdin::example();
+    rc::example();
 }