start Gla by cloning the template

This commit is contained in:
Inari Listenmaa
2025-08-25 17:01:43 +02:00
parent 3aeb0707f5
commit 1f3a35a95c
24 changed files with 2780 additions and 0 deletions
+36
View File
@@ -0,0 +1,36 @@
concrete NamesGla of Names = CatGla ** open Prelude in {
-- An API layer to deal with names
-- Not part of the RGL API, but used in the AW project
-- So depends on your goals whether this is high or low priority to implement.
{-
lin
-- : GN -> NP ;
GivenName gn =
-- : SN -> NP ;
MaleSurname sn =
-- : SN -> NP ;
FemaleSurname sn =
-- : SN -> NP ;
PlSurname sn =
-- : GN -> SN -> NP ;
FullName gn sn =
lin
-- : LN -> NP ;
UseLN ln =
-- : LN -> NP ;
PlainLN ln =
-- : LN -> Adv ;
InLN ln =
-- : AP -> LN -> LN ;
AdjLN ap ln =
-}
}