*** empty log message ***
[m17n/m17n-lib-cs.git] / temp.cs
1 using System;
2 using M17N.Core;
3
4 public class Test
5 {
6   public static void Main()
7   {
8     MText mt = new MText ("a𝄀あc");
9
10     Console.WriteLine (mt[0]);
11     Console.WriteLine (mt[1]);
12     Console.WriteLine (mt[2]);
13     Console.WriteLine (mt[3]);
14   }
15 }