This commit is contained in:
Donny Viszneki 2018-03-01 07:54:31 +00:00 committed by GitHub
commit 9c42c49f1d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -96,7 +96,7 @@ All variable scope, as of this version, is local to the enclosing function or to
*(from 1.1)*
Variable identifiers may be in all small or lowercase letters (or a mixture of the two). They must begin with a letter and may be followed only by other letters, numbers, and underscores. No spaces, dashes, or other symbols are allowed. Variable identifiers are CASE SENSITIVE "cheezburger", "CheezBurger" and "CHEEZBURGER" would all be different variables.
Variable identifiers may be in all uppercase or lowercase letters (or a mixture of the two). They must begin with a letter and may be followed only by other letters, numbers, and underscores. No spaces, dashes, or other symbols are allowed. Variable identifiers are CASE SENSITIVE "cheezburger", "CheezBurger" and "CHEEZBURGER" would all be different variables.
### Declaration and Assignment