1
0
forked from GitHub/gf-core

added Facebook grammar from SummerSchool tutorial on best practices for grammar writing

This commit is contained in:
ramona.enache
2013-08-21 13:05:22 +00:00
parent 3ff910a0e9
commit 3db9bcf219
6 changed files with 109 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
concrete FacebookEng of Facebook = FacebookI with
(Syntax = SyntaxEng),
(LexFacebook = LexFacebookEng) **
open ParadigmsEng in {
lin
You = you_NP ;
John = mkNP (mkPN "John") ;
Mary = mkNP (mkPN "Mary") ;
Frauinsel = mkNP (mkPN "Frauinsel") ;
GF = mkNP (mkPN "GF") ;
}