SyntaxFix
Write A Post
Hire A Developer
Questions
Java
int temp = a ? b : c;
Equivalent to Kotlin:
var temp = if (a) b else c