sdml-errors 0.4.1

Simple Domain Modeling Language (SDML) errors and diagnostics.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
module Example <https://example.com/api> is

  structure access_record is
    Name -> string
  end

  enum Foo of
    one
    two
  end

  union Bar of
    Foo as foo
  end

end