December 2017
Beginner to intermediate
470 pages
12h 29m
English
Code can be embedded within text using single backticks (`) surrounding it, or can be used in independent blocks by using triple backticks (```). Optionally, you may specify the programming language in the code block to activate syntax highlighting for that code.
If we use the following input:
```r
add_two_numbers <- function(x, y) {
return(x + y)
}
```
We get the following output:
add_two_numbers <- function(x, y) {
return(x + y)
}