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
19 lines
169 B
Markdown
19 lines
169 B
Markdown
## Test
|
|
|
|
```catala
|
|
new scope A:
|
|
param x content int
|
|
param y content int
|
|
|
|
scope A:
|
|
def x := 0
|
|
|
|
exception
|
|
def x := 1
|
|
|
|
def y := 2
|
|
|
|
exception
|
|
def y := 3
|
|
```
|