Open
Description
Consider the following code cells in a quarto-document:
## Welcome {.unnumbered}
```{r}
my_list = list(1, 2, 3)
typeof(my_list)
```
```{python}
my_list = [1, 2, 3]
type(my_list)
```
Would it be possible to add a flag to quarto
that specifies only R code chunks be written/evaluated? e.g.
## Welcome {.unnumbered}
```{r}
my_list = list(1, 2, 3)
typeof(my_list)
```