- Describe your reason for requesting this feature. What problems are you running into?
I would love to see ternary operators in PulpScript.
It could shorten lines like
if turn=="player" then
performingMoveTile = playerMonsterId
else
performingMoveTile = enemyMonsterId
end
to a single line like
performingMoveTile = turn=="player" ? playerMonsterId : enemyMonsterId