*** empty log message ***
[m17n/m17n-lib-cs.git] / xex.cs
1 using System;
2 using System.Collections.Generic;
3 using System.IO;
4 using System.Xml;
5 using System.Xml.Expression;
6
7 public class Test
8 {
9   public static void Main()
10   {
11     Xex.Domain domain = new Xex.Domain (null);
12     Xex xex = Xex.New ("xex.xml", domain);
13
14     Xex.Debug = true;
15     Console.WriteLine (xex.Eval (domain));
16   }
17 }