@@ -83,7 +83,7 @@ For this purpose, lower case letters include not only a-z, but also all characte
83
83
84
84
The following are examples of variable identifiers:
85
85
86
- > ``` scala
86
+ > ```
87
87
> x maxIndex p2p empty_?
88
88
> `yield` αρετη _y dot_product_*
89
89
> __system _MAX_LEN_
@@ -92,7 +92,7 @@ The following are examples of variable identifiers:
92
92
93
93
Some examples of constant identifiers are
94
94
95
- > ```scala
95
+ > ```
96
96
> + Object $reserved Džul ǂnûm
97
97
> ⅰ_ⅲ Ⅰ_Ⅲ ↁelerious ǃqhàà ʹthatsaletter
98
98
> ```
@@ -104,7 +104,7 @@ User programs should not define identifiers that contain ‘$’ characters.
104
104
105
105
The following names are reserved words instead of being members of the syntactic class `id` of lexical identifiers.
106
106
107
- ```scala
107
+ ```
108
108
abstract case catch class def do else
109
109
enum export extends false final finally for
110
110
given if implicit import lazy match new
@@ -169,14 +169,14 @@ A newline in a Scala source text is treated as the special token “nl” if the
169
169
170
170
The tokens that can terminate a statement are: literals, identifiers and the following delimiters and reserved words:
171
171
172
- ``` scala
172
+ ```
173
173
this null true false return type <xml-start>
174
174
_ ) ] }
175
175
```
176
176
177
177
The tokens that can begin a statement are all Scala tokens _ except_ the following delimiters and reserved words:
178
178
179
- ``` scala
179
+ ```
180
180
catch else extends finally forSome match
181
181
with yield , . ; : = => <- <: <%
182
182
>: # [ ) ] }
@@ -452,7 +452,7 @@ Characters must not necessarily be printable; newlines or other control characte
452
452
>
453
453
> This would produce the string:
454
454
>
455
- > ```scala
455
+ > ```
456
456
> the present string
457
457
> spans three
458
458
> lines.
@@ -469,7 +469,7 @@ Characters must not necessarily be printable; newlines or other control characte
469
469
>
470
470
> evaluates to
471
471
>
472
- > ```scala
472
+ > ```
473
473
> the present string
474
474
> spans three
475
475
> lines.
0 commit comments