Use indentation instead of for code

This commit is contained in:
Thomas Ave 2016-05-29 19:07:13 +02:00
parent dbc79353e7
commit 28b4f3c074
1 changed files with 4 additions and 6 deletions

View File

@ -77,13 +77,11 @@ If you want to add a comment to the file, make sure the line starts with a `#` a
Consider the following example: Consider the following example:
```
Capital_letters = [A-Z] Capital_letters = [A-Z]
Numbers = [0-9] Numbers = [0-9]
# This is a comment # This is a comment
All_letters = [a-zA-Z] All_letters = [a-zA-Z]
```
Here we have 3 different tokens `Capital_letters`, `Numbers` and `All_letters`. Here we have 3 different tokens `Capital_letters`, `Numbers` and `All_letters`.
Note that the names for the tokens only consist of capital letters, small letter and underscores, other characters are not accepted. Note that the names for the tokens only consist of capital letters, small letter and underscores, other characters are not accepted.