---
title: "My first qmd"
format: html
---
## Quarto
To learn more about Quarto see <https://quarto.org>.
## Running Code
Quarto can render R, Julia, Python, or Observable.
You can embed code like this:
```{julia}
4 ∉ [2, 5, 1]
```
```{python}
4 not in [2, 5, 1]
```