Files
2025-05-04 09:38:01 +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 ;
}