summaryrefslogtreecommitdiff
path: root/examples/numerals/yasin_burushaski.gf
diff options
context:
space:
mode:
authorjohn.j.camilleri <john.j.camilleri@chalmers.se>2013-09-16 07:17:27 +0000
committerjohn.j.camilleri <john.j.camilleri@chalmers.se>2013-09-16 07:17:27 +0000
commitf5461eb3d4eb2605b546a4ed202c12bcdaa1f4e4 (patch)
tree946c9e8542b8e8271b6b529a95c0400fa6613cb4 /examples/numerals/yasin_burushaski.gf
parent8e1c6cca407c82fc09569d80c231b8d256735989 (diff)
Remove contribs and examples
Everything has now been moved to a separate repository at https://github.com/GrammaticalFramework/gf-contrib The contents of the examples folder are build during SetupWeb
Diffstat (limited to 'examples/numerals/yasin_burushaski.gf')
-rw-r--r--examples/numerals/yasin_burushaski.gf65
1 files changed, 0 insertions, 65 deletions
diff --git a/examples/numerals/yasin_burushaski.gf b/examples/numerals/yasin_burushaski.gf
deleted file mode 100644
index 1b38d0208..000000000
--- a/examples/numerals/yasin_burushaski.gf
+++ /dev/null
@@ -1,65 +0,0 @@
-concrete yasin_burushaski of Numerals = {
--- include numerals.Abs.gf ;
-
-oper LinDigit = {s : DForm => Str ; even20 : Even20 ; size : Size} ;
-
-oper mk20Ten : Str -> Str -> LinDigit = \tri -> \tw ->
- {s = table {unit => tri ; teen => "turma-" + tri ; twenty => tw+"-áltar"} ;
- even20 = ten ; size = pl} ;
-
-oper mkEven20 : Str -> Str -> LinDigit = \tri -> \tw ->
- {s = table {unit => tri ; teen => "turma-" + tri ; twenty => tw+"-áltar"} ;
- even20 = even ; size = pl} ;
-
-param Even20 = ten | even ;
-param DForm = unit | teen | twenty ;
-param Size = sg | pl ;
-
-lincat Numeral = {s : Str} ;
-lincat Digit = LinDigit ;
-lincat Sub10 = LinDigit ;
-lincat Sub100 = {s : Str ; size : Size} ;
-lincat Sub1000 = {s : Str ; size : Size } ;
-lincat Sub1000000 = {s : Str} ;
-lin num x0 =
- {s = x0.s} ;
-lin n2 = {s = table {unit => "altó" ; teen => "turma-" + "altó" ; twenty => "áltar" } ; even20 = even ; size = pl} ;
-lin n3 = {s = table {unit => "iskí" ; teen => "turma-" + "iskí" ; twenty => "áltar" } ; even20 = ten ; size = pl} ;
-lin n4 = mkEven20 "wálte" "altó";
-lin n5 = mk20Ten "cendí" "altó";
-lin n6 = mkEven20 "bis'índe" "iskí" ;
-lin n7 = mk20Ten "thalé" "iskí";
-lin n8 = mkEven20 "altámbe" "wálte";
-lin n9 = mk20Ten "hutí" "wálte";
-
-lin pot01 =
- {s = table {unit => "hek" ; teen => "turma-" + "hék" ; twenty => []} ; even20 = ten ; size = sg};
-lin pot0 d = d ;
-lin pot110 = {s = "tórum" ; size = pl} ;
-lin pot111 = {s = "turma-" + "hék" ; size = pl} ;
-lin pot1to19 d = {s = d.s ! teen ; size = pl} ;
-lin pot0as1 n = {s = n.s ! unit ; size = n.size} ;
-lin pot1 d =
- {s = table {even => d.s ! twenty ;
- ten => d.s ! twenty ++ "tórum"} ! d.even20 ;
- size = pl} ;
-lin pot1plus d e =
- {s = table {even => d.s ! twenty ++ e.s ! unit;
- ten => d.s ! twenty ++ e.s ! teen} ! (d.even20) ;
- size = pl} ;
-
-lin pot1as2 n = n ;
-lin pot2 d = {s = (selsg d.size (d.s ! unit)) ++ "tha" ; size = pl} ;
-lin pot2plus d e =
- {s = (selsg d.size (d.s ! unit)) ++ "tha" ++ e.s ; size = pl} ;
-lin pot2as3 n =
- {s = n.s } ;
-lin pot3 n =
- {s = selsg n.size n.s ++ "hazár"} ;
-lin pot3plus n m =
- {s = selsg n.size n.s ++ "hazár" ++ m.s } ;
-
-oper selsg : Size -> Str -> Str = \sz -> \attr ->
- table {sg => [] ; _ => attr} ! sz ;
-
-}