MasterNerd@lemm.ee to Programmer Humor@lemmy.ml · 2 months agoLabels go brrrrlemm.eeimagemessage-square34linkfedilinkarrow-up1199cross-posted to: programmer_humor@programming.dev
arrow-up1199imageLabels go brrrrlemm.eeMasterNerd@lemm.ee to Programmer Humor@lemmy.ml · 2 months agomessage-square34linkfedilinkcross-posted to: programmer_humor@programming.dev
minus-squarerenegadespork@lemmy.jelliefrontier.netlinkfedilinkEnglisharrow-up5·edit-22 months agolet comment: String = String::from(“lol”); println!(“{}”, comment);
minus-squareBogasse@lemmy.mllinkfedilinkarrow-up13·edit-22 months agoprintln!("{comment}"); C’mon, it’s 2025!
minus-squarespacecadet@lemm.eelinkfedilinkarrow-up1·2 months agoNot inside a main function, won’t pass rust compiler check
minus-squarerenegadespork@lemmy.jelliefrontier.netlinkfedilinkEnglisharrow-up2·2 months 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.