diff options
| author | fukachan <fukachan> | 2001-02-25 06:43:41 +0000 |
|---|---|---|
| committer | fukachan <fukachan> | 2001-02-25 06:43:41 +0000 |
| commit | a2cc40f14d32f8f38fff0391d91ea9c0d64315ec (patch) | |
| tree | 0f62e4ed29a02342083a4d8271c63be7a305eb04 /regress/base/string.pl | |
| parent | 39d104d1caf304a154d3c9f1caa7601152510667 (diff) | |
| download | fml8-a2cc40f14d32f8f38fff0391d91ea9c0d64315ec.tar.gz fml8-a2cc40f14d32f8f38fff0391d91ea9c0d64315ec.tar.bz2 fml8-a2cc40f14d32f8f38fff0391d91ea9c0d64315ec.zip | |
clean up documents
move FML::String to Dialect::ISO2022JP (Dialect::Japanese::String)
Diffstat (limited to 'regress/base/string.pl')
| -rwxr-xr-x | regress/base/string.pl | 17 |
1 files changed, 15 insertions, 2 deletions
diff --git a/regress/base/string.pl b/regress/base/string.pl index 733ac426..8895e12f 100755 --- a/regress/base/string.pl +++ b/regress/base/string.pl @@ -1,7 +1,20 @@ -use lib qw(./lib/fml5 ./lib/CPAN ./lib/3RDPARTY ./lib); -use FML::String qw(STR2EUC); +#!/usr/local/bin/perl +#-*- perl -*- +# +# Copyright (C) 2001 Ken'ichi Fukamachi +# All rights reserved. This program is free software; you can +# redistribute it and/or modify it under the same terms as Perl itself. +# +# $Id$ +# $FML$ +# + +use lib qw(./lib/ ../../cpan/lib); +use Dialect::ISO2022JP qw(STR2EUC); for (@ARGV) { my $x = &STR2EUC($_); print "<$_> -> <$x>\n"; } + +exit 0; |
