mirror of
https://github.com/GrammaticalFramework/comp-syntax-gu-mlt.git
synced 2026-02-08 22:41:05 -07:00
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 ;
|
|
|
|
} |