bestelbus22@lemmy.world to Programmer Humor@lemmy.mlEnglish · 2 months agoThe meaning of thislemmy.mlimagemessage-square71fedilinkarrow-up1545arrow-down115
arrow-up1530arrow-down1imageThe meaning of thislemmy.mlbestelbus22@lemmy.world to Programmer Humor@lemmy.mlEnglish · 2 months agomessage-square71fedilink
minus-squareEphera@lemmy.mllinkfedilinkEnglisharrow-up1·2 months agoThe conventional ternary is structured like a normal if-else. In fact, in many languages with functional influence, they’re the same thing. For example, you can write this in Rust: let vegetable = if 3 > 4 { "Potato" } else { "Tomato" };
The conventional ternary is structured like a normal if-else. In fact, in many languages with functional influence, they’re the same thing.
For example, you can write this in Rust: