roc/test/int/platform/Simple.roc
2025-12-16 11:48:15 +11:00

4 lines
88 B
Text

Simple(model) := [Leaf(Str)].{
leaf : Str -> Simple(model)
leaf = |s| Leaf(s)
}