From 8e8f16646bfa7f4118674728a9a1e379eee50462 Mon Sep 17 00:00:00 2001 From: Greg Shuflin Date: Wed, 15 Nov 2023 02:13:17 -0800 Subject: [PATCH] secrets strings:wq --- src/sneakers.rs | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/src/sneakers.rs b/src/sneakers.rs index 72cb4a0..3fe0ab5 100644 --- a/src/sneakers.rs +++ b/src/sneakers.rs @@ -1,4 +1,19 @@ +const head1Left: &str = "DATANET PROC RECORD: 45-3456-W-3452"; +const head1Right: &str = "Transnet on/xc-3"; +const head2Center: &str = "FEDERAL RESERVE TRANSFER NODE"; +const head3Center: &str = "National Headquarters"; +const head4Center: &str = "************ Remote Systems Network Input Station ************"; +const head5Center: &str = "================================================================"; +const menu1: &str = "[1] Interbank Funds Transfer (Code Prog: 485-GWU)"; +const menu2: &str = "[2] International Telelink Access (Code Lim: XRP-262)"; +const menu3: &str = "[3] Remote Facsimile Send/Receive (Code Tran: 2LZP-517)"; +const menu4: &str = "[4] Regional Bank Interconnect (Security Code: 47-B34)"; +const menu5: &str = "[5] Update System Parameters (Entry Auth. Req.)"; +const menu6: &str = "[6] Remote Operator Logon/Logoff"; +const foot1Center: &str = "================================================================"; +const foot2Center: &str = "[ ] Select Option or ESC to Abort"; + #[no_mangle] pub extern "C" fn rust_sneakers_effect() { @@ -7,4 +22,6 @@ pub extern "C" fn rust_sneakers_effect() { let dur = Duration::from_millis(2000); std::thread::sleep(dur); + + let mut buf = String::new(); }