I want my html file to show the code, but not the output of this chunk:
```{r echo=True, include=FALSE} fun <- function(b) { for(a in b) {
The results = 'hide' option doesn't prevent other messages to be printed. To hide them, the following options are useful:
results = 'hide'
{r, error=FALSE}
{r, warning=FALSE}
{r, message=FALSE}
In every case, the corresponding warning, error or message will be printed to the console instead.