You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
hey, what if livescript introduce shorthands to those basic statements?
not a real issue, just a question to discuss maybe.
if a > b
true
else if a < b
true
may become
if a > b
true
ef a < b
true
comparisons are perfectly aligned - is it better for code readability?
i've noticed new versions of php have both else if and elseif valid syntax constructs, also, python has elif statement that is perfectly aligned with else..
The text was updated successfully, but these errors were encountered:
hey, what if livescript introduce shorthands to those basic statements?
not a real issue, just a question to discuss maybe.
may become
comparisons are perfectly aligned - is it better for code readability?
i've noticed new versions of php have both
else if
andelseif
valid syntax constructs, also, python haselif
statement that is perfectly aligned withelse
..The text was updated successfully, but these errors were encountered: