mirror of
https://github.com/GrammaticalFramework/gf-core.git
synced 2026-04-09 04:59:31 -06:00
18 lines
435 B
Plaintext
18 lines
435 B
Plaintext
concrete ZeroLat of Zero = {
|
|
lincat
|
|
S, VP, V2 = Str ;
|
|
NP = Case => Str ;
|
|
lin
|
|
Pred np vp = np ! Nom ++ vp ;
|
|
Compl v2 np = np ! Acc ++ v2 ;
|
|
John = table {Nom => "Ioannes" ; Acc => "Ioannem"} ;
|
|
Mary = table {Nom => "Maria" ; Acc => "Mariam"} ;
|
|
Love = "amat" ;
|
|
param
|
|
Case = Nom | Acc ;
|
|
}
|
|
|
|
--.
|
|
-- illustrates: parameters, word order
|
|
-- > p -lang=ZeroEng "John loves Mary" | aw -view=open -format=png
|