MasterNerd@lemm.ee to Programmer Humor@lemmy.ml · 2 days agoLabels go brrrrlemm.eeimagemessage-square27fedilinkarrow-up1169arrow-down120cross-posted to: programmer_humor@programming.dev
arrow-up1149arrow-down1imageLabels go brrrrlemm.eeMasterNerd@lemm.ee to Programmer Humor@lemmy.ml · 2 days agomessage-square27fedilinkcross-posted to: programmer_humor@programming.dev
minus-squarerenegadespork@lemmy.jelliefrontier.netlinkfedilinkEnglisharrow-up3·edit-22 days agolet comment: String = String::from(“lol”); println!(“{}”, comment);
minus-squareBogasse@lemmy.mllinkfedilinkarrow-up10·edit-21 day agoprintln!("{comment}"); C’mon, it’s 2025!
minus-squarespacecadet@lemm.eelinkfedilinkarrow-up1arrow-down1·1 day agoNot inside a main function, won’t pass rust compiler check
minus-squarerenegadespork@lemmy.jelliefrontier.netlinkfedilinkEnglisharrow-up2·1 day 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.