@MasterNerd@lemm.ee to Programmer Humor@lemmy.ml • 7 days agoLabels go brrrrlemm.eeimagemessage-square33fedilinkarrow-up1197arrow-down123
arrow-up1174arrow-down1imageLabels go brrrrlemm.ee@MasterNerd@lemm.ee to Programmer Humor@lemmy.ml • 7 days agomessage-square33fedilink
minus-square@renegadespork@lemmy.jelliefrontier.netlinkfedilinkEnglish5•edit-27 days agolet comment: String = String::from(“lol”); println!(“{}”, comment);
minus-square@spacecadet@lemm.eelinkfedilink0•7 days agoNot inside a main function, won’t pass rust compiler check
minus-square@renegadespork@lemmy.jelliefrontier.netlinkfedilinkEnglish2•7 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.