mirror of
https://github.com/GrammaticalFramework/gf-core.git
synced 2026-04-09 04:59:31 -06:00
12 lines
191 B
Plaintext
12 lines
191 B
Plaintext
concrete ZeroEng of Zero = {
|
|
lincat
|
|
S, NP, VP, V2 = Str ;
|
|
lin
|
|
Pred np vp = np ++ vp ;
|
|
Compl v2 np = v2 ++ np ;
|
|
John = "John" ;
|
|
Mary = "Mary" ;
|
|
Love = "loves" ;
|
|
}
|
|
|