The example document in the rmarkdown cheatsheet shows this:
```{r cars}
summary(cars)
```
but this seems to produce the same results:
```{r}
summary(cars)
```
What is the purpose of putting "cars" into {r cars}?
I can't find anything in the cheatsheet that explains its purpose.
TIA
Dan