// How to pass a string literal fn boom(s : &str) { println!("{}", s) } fn main() { boom("calendar"); }