mirror of
https://github.com/CatalaLang/catala.git
synced 2024-11-09 01:35:56 +03:00
3c8d187be0
Partially fixes #120 Removes the distinction between headers and articles, streamlines the surface AST Changes affects lexers and parser
16 lines
140 B
Markdown
16 lines
140 B
Markdown
## Article
|
|
|
|
```catala
|
|
new enum E:
|
|
-- Case1
|
|
|
|
new enum F:
|
|
-- Case1
|
|
|
|
new scope A:
|
|
param e content E
|
|
|
|
scope A:
|
|
def e := Case1
|
|
```catala
|