Closed
Description
Here's an odd edge case: The following pointless but well-documented piece of code compiles just fine
# Set i = 1 if true
if true
i = 1
else
i = 2
as does this
# Set i = 1 if true
if true
i = 1
# Otherwise, set i = 2
else
i = 2
but this won't parse:
# Set i = 1 if true
if true
i = 1
# Otherwise, set i = 2
else
i = 2