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