summaryrefslogtreecommitdiff
path: root/regress/base/string.pl
diff options
context:
space:
mode:
authorfukachan <fukachan>2001-02-25 06:43:41 +0000
committerfukachan <fukachan>2001-02-25 06:43:41 +0000
commita2cc40f14d32f8f38fff0391d91ea9c0d64315ec (patch)
tree0f62e4ed29a02342083a4d8271c63be7a305eb04 /regress/base/string.pl
parent39d104d1caf304a154d3c9f1caa7601152510667 (diff)
downloadfml8-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-xregress/base/string.pl17
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;