Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
1>2?'1':''
The conditional
1>2?'greater':'smaller'
throws a syntax error, unexpected tLABEL_END, while is valid in standard ruby.
syntax error, unexpected tLABEL_END
Conversely, the conditional
1>2?'greater' :'smaller'
correctly returns "smaller". Note the space before the column.
"smaller"
The text was updated successfully, but these errors were encountered:
fead715
remove debug code; ref #3344
73cc087
No branches or pull requests
The conditional
throws a
syntax error, unexpected tLABEL_END
, while is valid in standard ruby.Conversely, the conditional
correctly returns
"smaller"
. Note the space before the column.The text was updated successfully, but these errors were encountered: