mirror of
https://github.com/nim-lang/Nim.git
synced 2026-01-06 13:07:48 +00:00
This commit is contained in:
committed by
GitHub
parent
141abb7b75
commit
9c3faa449b
@@ -257,6 +257,18 @@ Multiline documentation comments also exist and support nesting too:
|
||||
]##
|
||||
```
|
||||
|
||||
You can also use the [discard statement](#statements-and-expressions-discard-statement) together with
|
||||
[triple quoted string literals](#lexical-analysis-triple-quoted-string-literals) to create multiline comments:
|
||||
|
||||
```nim
|
||||
discard """ You can have any Nim code text commented
|
||||
out inside this with no indentation restrictions.
|
||||
yes("May I ask a pointless question?") """
|
||||
```
|
||||
|
||||
This was how multiline comments were done before version 0.13.0,
|
||||
and it is used to provide specifications to [testament](testament.html#writing-unitests) test framework.
|
||||
|
||||
|
||||
Identifiers & Keywords
|
||||
----------------------
|
||||
|
||||
Reference in New Issue
Block a user