Use indentation instead of for code
This commit is contained in:
parent
dbc79353e7
commit
28b4f3c074
10
README.md
10
README.md
|
@ -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.
|
||||||
|
|
Loading…
Reference in New Issue