bterlson / cadl-rdfs

A cadl to rdfs emitter
0 stars 0 forks source link

Implement Model Spread #13

Open mspaulik opened 2 years ago

mspaulik commented 2 years ago

model Animal { species: string; }

model Pet { name: string; }

model Dog { ...Animal; ...Pet; }

// Dog is equivalent to the following declaration: model Dog { species: string; name: string; }