From f5461eb3d4eb2605b546a4ed202c12bcdaa1f4e4 Mon Sep 17 00:00:00 2001 From: "john.j.camilleri" Date: Mon, 16 Sep 2013 07:17:27 +0000 Subject: 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 --- examples/numerals/hungarian.gf | 64 ------------------------------------------ 1 file changed, 64 deletions(-) delete mode 100644 examples/numerals/hungarian.gf (limited to 'examples/numerals/hungarian.gf') diff --git a/examples/numerals/hungarian.gf b/examples/numerals/hungarian.gf deleted file mode 100644 index db00bc50e..000000000 --- a/examples/numerals/hungarian.gf +++ /dev/null @@ -1,64 +0,0 @@ -concrete hungarian of Numerals = { --- include numerals.Abs.gf ; - --- by Patrik Jansson, Chalmers - -param DForm = ental | tiotal ; -param Place = attr | indep ; -lincat Numeral = {s : Str} ; -lincat Digit = {s : (DForm*Place) => Str} ; -lincat Sub10 = {s : (DForm*Place) => Str} ; -lincat Sub100 = {s : Place => Str} ; -lincat Sub1000 = {s : Place => Str} ; -lincat Sub1000000 = {s : Str} ; -lin num x0 = - {s = x0.s} ; -lin n2 = - {s = table { => "kettö" ; - => "húsz" ; - => "két" ; - => "huszon"}} ; -lin n3 = - {s = table { => "három" ; => "harminc"}} ; -lin n4 = - {s = table { => "négy" ; => "negyven"}} ; -lin n5 = - {s = table { => "öt" ; => "ötven"}} ; -lin n6 = - {s = table { => "hat" ; => "hatvan"}} ; -lin n7 = - {s = table { => "hét" ; => "hetven"}} ; -lin n8 = - {s = table { => "nyolc" ; => "nyolcvan"}} ; -lin n9 = - {s = table { => "kilenc" ; => "kilencven"}} ; -lin pot01 = - {s = table { => [] ; => "egy"}} ; -lin pot0 d = - {s = table { => d.s ! }} ; -lin pot110 = - {s = table {p => "tíz"}} ; -lin pot111 = - {s = table {p => "tizen" ++ "egy"}} ; -lin pot1to19 d = - {s = table {p => "tizen" ++ d.s ! }} ; -lin pot0as1 n = - {s = table {p => n.s ! }} ; -lin pot1 d = - {s = table {p => d.s ! }} ; -lin pot1plus d e = - {s = table {p => (d.s ! ) ++ e.s ! }} ; -lin pot1as2 n = - {s = table {p => n.s ! p}} ; -lin pot2 d = - {s = table {p => (d.s ! ) ++ "száz"}} ; -lin pot2plus d e = - {s = table {p => (d.s ! ) ++ "száz" ++ e.s ! indep}} ; -lin pot2as3 n = - {s = n.s ! indep} ; -lin pot3 n = - {s = n.s ! attr ++ "ezer"} ; -lin pot3plus n m = - {s = n.s ! attr ++ "ezer" ++ m.s ! indep} ; - -} -- cgit v1.2.3