Change the syntax of structures to require the struct keyword

This commit is contained in:
Olivier Goffart 2020-10-27 16:06:21 +01:00
parent 333c96fd79
commit d3801e26d3
12 changed files with 96 additions and 80 deletions

View file

@ -22,9 +22,9 @@ in lexicographic order.
For example, if you have this structure in the .60 file
```60
export MyStruct := {
property <int> foo;
property <string> bar;
export struct MyStruct := {
foo: int,
bar: string,
}
```