Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexey-Sagaydak committed Mar 10, 2024
2 parents c4eeb79 + 29e667b commit cb773e8
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -183,10 +183,12 @@ P = {
3. CONST → ‘CONSTANT’ INT
4. INT → ‘INTEGER’ ASSIGN
5. ASSIGN → ‘:=’ NUMBER | ‘=’ NUMBER
6. NUMBER → SIGN [ Ц ] ‘;’
7. SIGN → ‘+’ | ‘-‘ | ε
8. Б → ‘a’ | ‘b’ | … | ‘z’ | ‘A’ | ‘B’ | … | ‘Z’
9. Ц → ‘0’ | ‘1’ | … | ‘9’
6. NUMBER → SIGN UNSIGNEDINT
7. SIGN → [ ‘+’ | ‘-‘ ]
8. UNSIGNEDINT → Ц { Ц } END
9. END → ‘;’
10. Б → ‘a’ | ‘b’ | … | ‘z’ | ‘A’ | ‘B’ | … | ‘Z’
11. Ц → ‘0’ | ‘1’ | … | ‘9’

}

Expand Down

0 comments on commit cb773e8

Please sign in to comment.