cashscript
cashscript copied to clipboard
Consider adding a ternary operator
Solidity has it
now we would have to do
int someVar = 5;
if(condition){
someVar = 6;
}
or
int someVar = 5;
if(condition) someVar = 6;
instead of
int someVar = condition ? 6 : 5;