# Control structures - Comments There is no single-line token to comment code within Picea, it's a tag working as such : **[PICEA]** So, using this code: ```html {# This is how you comment in a Picea view #}
{# Is it hello or good bye ? not sure on this ! #} Good bye world !
{# This is a multi-line comment
This part will not be rendered
#} ``` **[HTML]** Would render as such: ```html
Good bye world !
```