no-more-secrets-rust/src/sneakers.rs

28 lines
1.3 KiB
Rust

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() {
println!("Rust sneakers effect");
use std::time::Duration;
let dur = Duration::from_millis(2000);
std::thread::sleep(dur);
let mut buf = String::new();
}