MasterNerd@lemm.ee to Programmer Humor@lemmy.ml · 2 days agoLabels go brrrrlemm.eeimagemessage-square7fedilinkarrow-up1146arrow-down119
arrow-up1127arrow-down1imageLabels go brrrrlemm.eeMasterNerd@lemm.ee to Programmer Humor@lemmy.ml · 2 days agomessage-square7fedilink
minus-squarerenegadesporkAlinkfedilinkEnglisharrow-up6·edit-22 days agolet comment: String = String::from(“lol”); println!(“{}”, comment);
minus-squareBogasse@lemmy.mllinkfedilinkarrow-up10·edit-22 days agoprintln!("{comment}"); C’mon, it’s 2025!
minus-squarespacecadet@lemm.eelinkfedilinkarrow-up1arrow-down1·2 days agoNot inside a main function, won’t pass rust compiler check
minus-squarerenegadesporkAlinkfedilinkEnglisharrow-up1·2 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.