-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathintro.qmd
More file actions
32 lines (22 loc) · 714 Bytes
/
intro.qmd
File metadata and controls
32 lines (22 loc) · 714 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
---
title: "Introduction"
---
{{< include ./_extensions/r-wasm/live/_knitr.qmd >}}
{{< include ./_extensions/r-wasm/live/_gradethis.qmd >}}
```{webr}
#| runbutton: true
mean(c(1, 2, 3))
```
## Quarto
Quarto enables you to weave together content and executable code into a finished document. To learn more about Quarto see <https://quarto.org>.
## Running Code
When you click the **Render** button a document will be generated that includes both content and the output of embedded code. You can embed code like this:
```{webr}
1 + 1
```
You can add options to executable code like this
```{webr}
#| echo: false
2 * 2
```
The `echo: false` option disables the printing of code (only output is displayed).