@[email protected] to Programmer [email protected] • 18 days agoLabels go brrrrlemm.eeimagemessage-square34fedilinkarrow-up1200arrow-down123cross-posted to: [email protected]
arrow-up1177arrow-down1imageLabels go brrrrlemm.ee@[email protected] to Programmer [email protected] • 18 days agomessage-square34fedilinkcross-posted to: [email protected]
minus-square@[email protected]linkfedilinkEnglish6•edit-218 days agolet comment: String = String::from(“lol”); println!(“{}”, comment);
minus-square@[email protected]linkfedilink12•edit-217 days agoprintln!("{comment}"); C’mon, it’s 2025!
minus-square@[email protected]linkfedilink0•17 days agoNot inside a main function, won’t pass rust compiler check
let comment: String = String::from(“lol”);
println!(“{}”, comment);
println!("{comment}");
C’mon, it’s 2025!
Not inside a main function, won’t pass rust compiler check
Just a snippet from a bigger function.