some PERL playing with JSON
[mirrors/Programs.git] / perl / map-reduce / recursive-json.pl
diff --git a/perl/map-reduce/recursive-json.pl b/perl/map-reduce/recursive-json.pl
new file mode 100755 (executable)
index 0000000..8c57d00
--- /dev/null
@@ -0,0 +1,12 @@
+#!/usr/bin/env perl
+use strict;
+use warnings;
+
+use JSON;
+use Data::Dumper;
+
+my $a={a=>{f=>"",b=>""},b=>{f=>"",b=>""}};
+$a->{"b"}=$a;
+
+print Dumper($a);
+print encode_json($a)."\n"
This page took 0.096911 seconds and 4 git commands to generate.