catala/tests/test_exception/good/two_unlabeled_exceptions.catala
Denis Merigoux 3c8d187be0
Big refactoring of the literate programming structure
Partially fixes #120
Removes the distinction between headers and articles, streamlines the surface AST
Changes affects lexers and parser
2021-05-15 01:16:08 +02:00

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
```