mirror of
https://github.com/roc-lang/roc.git
synced 2025-12-23 08:48:03 +00:00
4 lines
88 B
Text
4 lines
88 B
Text
Simple(model) := [Leaf(Str)].{
|
|
leaf : Str -> Simple(model)
|
|
leaf = |s| Leaf(s)
|
|
}
|