File: Test.cs

package info (click to toggle)
cmigemo 20110227-7
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 840 kB
  • sloc: ansic: 2,617; lisp: 608; cs: 183; makefile: 159; sh: 137; cpp: 67; perl: 59; csh: 49
file content (15 lines) | stat: -rw-r--r-- 265 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// vim:set ts=4 sts=4 sw=4 tw=0:

using System;
using KaoriYa.Migemo;

public class Test
{
	public static int Main(string[] args)
	{
		Migemo m = new Migemo("../dict/migemo-dict");
		string res = m.Query("kaki");
		Console.WriteLine("kaki->"+res);
		return 0;
	}
}