mirror of
https://github.com/GrammaticalFramework/gf-core.git
synced 2026-04-19 01:39:32 -06:00
24 lines
384 B
Plaintext
24 lines
384 B
Plaintext
--# -path=.:present
|
|
|
|
concrete PhrasebookFin of Phrasebook =
|
|
GreetingsFin,
|
|
FoodFin ** open
|
|
SyntaxFin,
|
|
ResFin, ---- for Num to Utt
|
|
Prelude in {
|
|
|
|
lincat
|
|
Phrase = Utt ;
|
|
|
|
lin
|
|
PNumeral n =
|
|
mkPhrase (ss ((SyntaxFin.mkCard <n : Numeral>).s ! Sg ! Nom)) ; ----
|
|
PGreeting g = mkPhrase g ;
|
|
PSentence s = s ;
|
|
|
|
|
|
oper
|
|
mkPhrase : SS -> Utt = \s -> lin Utt s ;
|
|
|
|
}
|