You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/docs/reference/other-new-features/indentation.md
+11Lines changed: 11 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -216,6 +216,17 @@ End markers are allowed in statement sequences. The specifier token `s` of an en
216
216
217
217
It is recommended that `end` markers are used for code where the extent of an indentation region is not immediately apparent "at a glance". Typicallythis is the caseif an indentation region spans 20 lines or more.
218
218
219
+
**Syntax**
220
+
221
+
```
222
+
EndMarker::= ‘end’ EndMarkerTag-- when followed by EOL
Here is a (somewhat meta-circular) example of code using indentation. It provides a concrete representation of indentation widths asdefined above together with efficient operations for constructing and comparing indentation widths.
0 commit comments