forked from GitHub/comp-syntax-gu-mlt
19 lines
257 B
Plaintext
19 lines
257 B
Plaintext
abstract Facts = {
|
|
|
|
flags startcat = Fact ;
|
|
|
|
cat
|
|
Fact ;
|
|
Object ;
|
|
Attribute ;
|
|
Value ;
|
|
Name ;
|
|
|
|
fun
|
|
AttributeFact : Attribute -> Object -> Value -> Fact ;
|
|
|
|
NameObject : Name -> Object ;
|
|
NameValue : Name -> Value ;
|
|
IntValue : Int -> Value ;
|
|
|
|
} |