mirror of
https://github.com/GrammaticalFramework/comp-syntax-gu-mlt.git
synced 2026-02-08 22:41:05 -07:00
22 lines
511 B
Plaintext
22 lines
511 B
Plaintext
abstract Nobel = Labels ** {
|
|
|
|
flags startcat = Sentence ;
|
|
|
|
cat
|
|
Sentence ;
|
|
Name ;
|
|
Date ;
|
|
|
|
fun
|
|
BornSentence : Name -> Country -> Date -> Sentence ;
|
|
AwardSentence : Name -> Award -> Date -> Sentence ;
|
|
DiedSentence : Name -> Date -> Sentence ;
|
|
|
|
FemaleName : String -> Name ; -- use if your language needs gender agreement
|
|
MaleName : String -> Name ; -- use if your language needs gender agreement
|
|
StringName : String -> Name ;
|
|
YearDate : Int -> Date ;
|
|
he_Name, she_Name, they_Name : Name ;
|
|
|
|
}
|