This is a header
This is some regular text.
# this is some R code (with syntax highlighting)
for (i in 1:10) {
if (i %% 2 == 0) {
print(sprintf("this is a string %s", i))
}
}
## [1] "this is a string 2"
## [1] "this is a string 4"
## [1] "this is a string 6"
## [1] "this is a string 8"
## [1] "this is a string 10"