mirror of
https://github.com/roc-lang/roc.git
synced 2025-08-09 22:58:01 +00:00
17 lines
319 B
Markdown
17 lines
319 B
Markdown
# A Simple Markdown Example
|
|
|
|
This file contains `form.roc` embedded as a block in Markdown. It lets us test that `roc check` works with Markdown.
|
|
|
|
```roc
|
|
module [foo]
|
|
|
|
foo = "Foo"
|
|
```
|
|
|
|
Excitingly, we can have another block of Roc code as well! (In this case it is the same one...)
|
|
|
|
```roc
|
|
module [bar]
|
|
|
|
bar = "Bar"
|
|
```
|