mirror of
https://github.com/GrammaticalFramework/gf-core.git
synced 2026-04-10 13:29:32 -06:00
19 lines
484 B
Plaintext
19 lines
484 B
Plaintext
--# -resource=../../lib/present/LangEng.gfc
|
|
--# -path=.:present:prelude
|
|
|
|
-- to compile: gf -examples QuestionsI.gfe
|
|
-- or use directly gf <mkAnimals.gfs
|
|
|
|
incomplete concrete QuestionsI of Questions = open Lang in {
|
|
lincat
|
|
Phrase = Phr ;
|
|
Entity = N ;
|
|
Action = V2 ;
|
|
|
|
lin
|
|
Who love_V2 man_N = in Phr "who loves men" ;
|
|
Whom man_N love_V2 = in Phr "whom does the man love" ;
|
|
Answer woman_N love_V2 man_N = in Phr "the woman loves men" ;
|
|
|
|
}
|