Files
comp-syntax-gu-mlt/lab2/wikipedia/Facts.gf
2022-05-30 15:01:30 +02:00

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 ;
}