𝙈𝙞𝙖@quokk.au to Programmer Humor@programming.devEnglish · 7 days agoParadoximagemessage-square61linkfedilinkarrow-up1721
arrow-up1721imageParadox𝙈𝙞𝙖@quokk.au to Programmer Humor@programming.devEnglish · 7 days agomessage-square61linkfedilink
minus-squareSkullgrid@lemmy.worldlinkfedilinkarrow-up14·7 days agocome the fuck on string bigIfTrue(Boolean size) { string toAssign = ''; if (size == true) { toAssign = 'big'; } else { toAssign = 'small'; } return toAssign; }
minus-squarefruitycoder@sh.itjust.workslinkfedilinkarrow-up2·6 days agoThis actually gets loaded as a WASM module by a server less API service when a user ask if true return big
minus-squareSkullgrid@lemmy.worldlinkfedilinkarrow-up2·7 days agohey, this is for fun and pseudocode.
come the fuck on
string bigIfTrue(Boolean size) { string toAssign = ''; if (size == true) { toAssign = 'big'; } else { toAssign = 'small'; } return toAssign; }Bloat. Nobody asked for else.
Or assignment. Just return.
true ? 'big' : '';Where’s your interface and factory?
This actually gets loaded as a WASM module by a server less API service when a user ask if true return big
hey, this is for fun and pseudocode.