1 2 3 4 5 6 7 8 9 10 11
#{prelude} fn main() { match {#{script}} { script_result => { let text = script_result.to_string(); let text = text.to_uppercase(); println!("{}", text); } } }