// Compile this example code and check the compiled output with:
// $ strings ./target/debug/examples/simple | grep Voldemort
// the encrypted one will not print anything (just blank).
#[macro_use]externcrate litcrypt;use_litcrypt!();fnmain(){// uncomment this for plain (non pre-compile-encrypted string)
// println!("his name is: {}", "Voldemort");
println!("his name is: {}",lc!("Voldemort"));}