From 2c2bf60d0c86fdcccc68077904ef115017e03194 Mon Sep 17 00:00:00 2001
From: tokuhirom <tokuhirom@gmail.com>
Date: Wed, 5 May 2010 15:50:07 +0900
Subject: [PATCH] Perl: added README file.

---
 perl/README | 34 ++++++++++++++++++++++++++++++++++
 1 file changed, 34 insertions(+)
 create mode 100644 perl/README

diff --git a/perl/README b/perl/README
new file mode 100644
index 00000000..31aae992
--- /dev/null
+++ b/perl/README
@@ -0,0 +1,34 @@
+NAME
+    Data::MessagePack - messagepack
+
+SYNOPSIS
+        my $packed = Data::MessagePack->pack($dat);
+        my $unpacked = Data::MessagePack->unpack($dat);
+
+DESCRIPTION
+    Data::MessagePack is a binary packer for perl.
+
+METHODS
+    my $packed = Data::MessagePack->pack($data);
+        pack the $data to messagepack format string.
+
+    my $unpacked = Data::MessagePack->unpack($msgpackstr);
+        unpack the $msgpackstr to messagepack format string.
+
+Configuration Variables
+    $Data::MessagePack::PreferInteger
+        Pack the string as int when the value looks like int(EXPERIMENTAL).
+
+AUTHORS
+    Tokuhiro Matsuno
+
+THANKS TO
+    Jun Kuriyama
+
+LICENSE
+    This library is free software; you can redistribute it and/or modify it
+    under the same terms as Perl itself.
+
+SEE ALSO
+    <http://msgpack.sourceforge.jp/>
+