*** 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     Console.WriteLine (mt + new MText ("漢字"));
15     mt[1] = 'b';
16     Console.WriteLine (mt);
17     mt[1] = 0x1d100;
18     Console.WriteLine (mt);
19   }
20 }