mirror of
https://github.com/GrammaticalFramework/gf-core.git
synced 2026-04-18 09:19:32 -06:00
14 lines
261 B
Plaintext
14 lines
261 B
Plaintext
concrete CatTur of Cat = CommonX ** open ResTur, Prelude in {
|
|
|
|
flags optimize=all_subs ;
|
|
|
|
lincat
|
|
|
|
-- Noun
|
|
NP, Pron = {s : Case => Str ; a : Agr} ;
|
|
|
|
-- Open lexical classes, e.g. Lexicon
|
|
V, VS, VQ, VA = Verb ;
|
|
N = {s : Number => Case => Str} ;
|
|
}
|