This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Keep It Simple and Stupid version of readonly hash support.
[perl5.git] / lib / Lingua / KO / Hangul / Util / README
CommitLineData
45394607
JH
1Lingua/KO/Hangul/Util version 0.02
2==================================
3
4SYNOPSIS
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
20INSTALLATION
21
22To install this module type the following:
23
24 perl Makefile.PL
25 make
26 make test
27 make install
28
29DEPENDENCIES
30
31Perl 5.006 or later
32
33COPYRIGHT AND LICENCE
34
35SADAHIRO 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.