Skip to content

Commit

Permalink
Задача 11. Поправлены регулярки для числе и идентификаторов.
Browse files Browse the repository at this point in the history
  • Loading branch information
gsvgit committed May 6, 2024
1 parent a06e1f8 commit 518fd2e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tasks/task11.md
Expand Up @@ -31,8 +31,8 @@ select = v_filter? v_filter? 'return' VAR (',' VAR)? 'where' VAR 'reachable' 'fr
v_filter = 'for' VAR 'in' expr
VAR = [a..z]+[a..z 0..9]*
NUM = [1..9]+[0..9]*
VAR = [a..z] [a..z 0..9]*
NUM = 0 | ([1..9] [0..9]*)
CHAR = '"' [a..z] '"'
```
Expand Down

0 comments on commit 518fd2e

Please sign in to comment.