Ranter
Join devRant
Do all the things like
++ or -- rants, post your own rants, comment on others' rants and build your customized dev avatar
Sign Up
Pipeless API
From the creators of devRant, Pipeless lets you power real-time personalized recommendations and activity feeds using a simple API
Learn More
Comments
-
elazar10307y@starless yes but the result is incomprehensible (whatwhy). The precise thing you want here is a pair (what, why) hence the comma.
-
@elazar
const CString what = "clear examples ";
const CString why = "because people on the Internet are frustrating";
const CString answer = what + why;
Works just fine. Not the ideal wording, perhaps, but it's perfectly plausible. -
@elazar ambiguities and infections in compiled C++ code? You are now the king of pedantry.
-
elazar10307y@starless ambiguities in the parsing of the text.
Using ad-hoc seperator rather a dedicated type (pair) is error prone, since the separator needs to be escaped and the language does not help with that
Related Rants
I'd replace the '+' in this week's question with '&'
undefined
wk54