Ejemplo n.º 1
0
        //Just quickly test something:
        public static void ShortTest()
        {
            Noun      n   = new Noun(@"C:\MBM\michmech\BuNaMo\noun\Gael_masc1.xml");
            Adjective adj = new Adjective(@"C:\MBM\michmech\BuNaMo\adjective\Gaelach_adj1.xml");
            NP        np  = new NP(n, adj);

            Console.WriteLine(np.print());
        }