Blokovani pres konstantu
[mirrors/Programs.git] / perl / map-reduce / recursive-json.pl
CommitLineData
0c2321c3
H
1#!/usr/bin/env perl
2use strict;
3use warnings;
4
5use JSON;
6use Data::Dumper;
7
8my $a={a=>{f=>"",b=>""},b=>{f=>"",b=>""}};
9$a->{"b"}=$a;
10
11print Dumper($a);
12print encode_json($a)."\n"
This page took 0.118197 seconds and 4 git commands to generate.