fork download
  1. my $count = 123;
  2.  
  3. my $json_string = {
  4. 'aaa' => {
  5. a => 1,
  6. b => 2,
  7. },
  8. 'bbb' => $count,
  9. };
  10.  
  11. print $json_string{'aaa'};
  12.  
Success #stdin #stdout 0.91s 74496KB
stdin
Standard input is empty
stdout
a	1
b	2