mirror of
https://github.com/GrammaticalFramework/comp-syntax-gu-mlt.git
synced 2026-05-06 00:02:51 -06:00
lecture 2 examples
This commit is contained in:
21
lectures/lecture02/NanoIta.gf
Normal file
21
lectures/lecture02/NanoIta.gf
Normal file
@@ -0,0 +1,21 @@
|
||||
concrete NanoIta of Nano = {
|
||||
|
||||
lincat
|
||||
S, NP, VP, CN,
|
||||
Det, Pron, A, N, V2 = Str ;
|
||||
|
||||
lin
|
||||
PredVPS np vp = np ++ vp ;
|
||||
ComplV2 v2 np = np ++ v2 ;
|
||||
DetCN det cn = det ++ cn ;
|
||||
AdjCN a cn = cn ++ a ;
|
||||
UseCN n = n ;
|
||||
UsePron pron = pron ;
|
||||
|
||||
the_Det = "il" ;
|
||||
black_A = "nero" ;
|
||||
cat_N = "gatto" ;
|
||||
see_V2 = "vede" ;
|
||||
we_Pron = "ci" ;
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user