@MasterNerd@lemm.ee to Programmer Humor@lemmy.ml • 12 days agoLabels go brrrrlemm.eeimagemessage-square34fedilinkarrow-up1199arrow-down123cross-posted to: programmer_humor@programming.dev
arrow-up1176arrow-down1imageLabels go brrrrlemm.ee@MasterNerd@lemm.ee to Programmer Humor@lemmy.ml • 12 days agomessage-square34fedilinkcross-posted to: programmer_humor@programming.dev
minus-square@renegadespork@lemmy.jelliefrontier.netlinkfedilinkEnglish6•edit-212 days agolet comment: String = String::from(“lol”); println!(“{}”, comment);
minus-square@Bogasse@lemmy.mllinkfedilink12•edit-212 days agoprintln!("{comment}"); C’mon, it’s 2025!
minus-square@spacecadet@lemm.eelinkfedilink0•12 days agoNot inside a main function, won’t pass rust compiler check
minus-square@renegadespork@lemmy.jelliefrontier.netlinkfedilinkEnglish2•12 days agoJust a snippet from a bigger function.
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.