Files
comp-syntax-gu-mlt/labs1-2/wikipedia-2022/Facts.gf
2025-03-21 13:51:53 +01: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 ;
}