---title:"Untitled typst moosterpiece"author:"nother bunch o cows"format: typst---## QuartoQuarto enables you to weave together content and executable code into a finished document. To learn more about Quarto see <https://quarto.org>.## Running CodeWhen 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:``{r}1 + 1``You can add options to executable code like this ``{r}#| echo: false2 * 2``The `echo: false` option disables the printing of code (only output is displayed).
---title:"presentation"author:"bunch o cows"format:revealjs:mouse-wheel:true---## QuartoQuarto enables you to weave together content and executable code into a finished presentation. To learn more about Quarto presentations see <https://quarto.org/docs/presentations/>.## BulletsWhen you click the **Render** button a document will be generated that includes:- Content authored with markdown- Output from executable code## CodeWhen you click the **Render** button a presentation will be generated that includes both content and the output of embedded code. You can embed code like this:``{r}1 + 1``