thp-web/md/learn/basics/comments.md

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 */
*/
```