29 lines
226 B
Markdown
29 lines
226 B
Markdown
# Comments
|
|
|
|
Only these two:
|
|
|
|
## Single line
|
|
|
|
```thp
|
|
// This is a single line comment
|
|
```
|
|
|
|
|
|
## Multi line
|
|
|
|
```thp
|
|
/*
|
|
This is a
|
|
multiline comment
|
|
*/
|
|
```
|
|
|
|
```thp
|
|
/*
|
|
Multiline comments
|
|
can be /* nested */
|
|
*/
|
|
```
|
|
|
|
|