Integrate Lingua::KO::Hangul::Util 0.02, Unicode::Normalize,
[p5sagit/p5-mst-13.2.git] / lib / Lingua / KO / Hangul / Util / README
1 Lingua/KO/Hangul/Util version 0.02
2 ==================================
3
4 SYNOPSIS
5
6   use Lingua::KO::Hangul::Util;
7
8   decomposeHangul(0xAC00);
9     # (0x1100,0x1161) or "\x{1100}\x{1161}"
10
11   composeHangul("\x{1100}\x{1161}");
12     # "\x{AC00}"
13
14   getHangulName(0xAC00);
15     # "HANGUL SYLLABLE GA"
16
17   parseHangulName("HANGUL SYLLABLE GA");
18     # 0xAC00
19
20 INSTALLATION
21
22 To install this module type the following:
23
24    perl Makefile.PL
25    make
26    make test
27    make install
28
29 DEPENDENCIES
30
31 Perl 5.006 or later
32
33 COPYRIGHT AND LICENCE
34
35 SADAHIRO Tomoyuki
36
37   bqw10602@nifty.com
38
39   http://homepage1.nifty.com/nomenclator/perl/
40
41   Copyright(C) 2001, SADAHIRO Tomoyuki. Japan. All rights reserved.
42
43   This program is free software; you can redistribute it and/or 
44   modify it under the same terms as Perl itself.