Btibert3
11/19/2012 - 10:36 PM

Eval Issue with R Markdown

Eval Issue with R Markdown

This works as expected

```{r}
library(rjson)
# comment
2+2
```
This doesn't print properly

```{r, eval=FALSE}
library(rjson)
# comment
2+2
```