summaryrefslogtreecommitdiff
path: root/spec/13-syntax-summary.md
diff options
context:
space:
mode:
Diffstat (limited to 'spec/13-syntax-summary.md')
-rw-r--r--spec/13-syntax-summary.md6
1 files changed, 5 insertions, 1 deletions
diff --git a/spec/13-syntax-summary.md b/spec/13-syntax-summary.md
index 2b9571cc73..7f73e107de 100644
--- a/spec/13-syntax-summary.md
+++ b/spec/13-syntax-summary.md
@@ -15,6 +15,8 @@ UnicodeEscape ::= ‘\‘ ‘u‘ {‘u‘} hexDigit hexDigit hexDigit hexDigit
hexDigit ::= ‘0’ | … | ‘9’ | ‘A’ | … | ‘F’ | ‘a’ | … | ‘f’
```
+## Lexical Syntax
+
The lexical syntax of Scala is given by the following grammar in EBNF form:
```ebnf
@@ -72,8 +74,10 @@ nl ::= $\mathit{“new line character”}$
semi ::= ‘;’ | nl {nl}
```
+## Context-free Syntax
+
The context-free syntax of Scala is given by the following EBNF
-grammar.
+grammar:
```ebnf
Literal ::= [‘-’] integerLiteral