We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Please introduce ELIF keyword, so switch-like codes:
if 0@ == 1 then print_help 'ONE' else if 0@ == 2 then print_help 'TWO' else if 0@ == 2 then print_help 'THREE' else print_help 'OTHER' end end end
can be simplified to:
if 0@ == 1 then print_help 'ONE' elif 0@ == 2 then print_help 'TWO' elif 0@ == 3 then print_help 'THREE' else print_help 'OTHER' end
The text was updated successfully, but these errors were encountered:
I think it's a duplicate of #160
Sorry, something went wrong.
I think I prefer else if syntax more, so closing this ticket in favor of #160
else if
No branches or pull requests
Please introduce ELIF keyword, so switch-like codes:
can be simplified to:
The text was updated successfully, but these errors were encountered: