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
For example: function hyphenated-name then void Compiles to: function hyphenatedName(e){}
function hyphenated-name then void
function hyphenatedName(e){}
Example: function hyphenated-name arg then void Raises: SyntaxError: invalid assign on line 1
function hyphenated-name arg then void
SyntaxError: invalid assign on line 1
The text was updated successfully, but these errors were encountered:
Ow. Fixing shortly.
Sorry, something went wrong.
9c3aa96
LINK gkz/LiveScript#143
No branches or pull requests
Last char of the hyphenated name for the function will be used as first argument
For example:
function hyphenated-name then void
Compiles to:
function hyphenatedName(e){}
Hyphenated name for the function can not be used with arguments
Example:
function hyphenated-name arg then void
Raises:
SyntaxError: invalid assign on line 1
The text was updated successfully, but these errors were encountered: