#' ---1#' title: "A report generated from a pure R script"2#' format: html3#' ---4#'5#' This is a report generated by `knitr::spin()`.6#'7#' ## Code block {#block}8#'9#' Let's try some **knitr** options:1011#| echo: false12#| fig-with: 713# This is a normal R comment.14plot(cars)1516#' ## Inline value {#inline}17#'18#' Now write an inline value. We know the value of $\pi$ is19# /*20# fmt: skip21# */22{{ pi }}23#' .24#'25#' Finally please note that all roxygen comments are26#' optional. You do not need chunk options, either,27#' unless you want more control over the output28#' elements such as the size of plots.2930# /* Write comments between /* and */ like C comments:31Sys.sleep(60)32# */333435