Help for this page

Select Code to Download


  1. or download this
    use strict;
    use warnings;
    ...
    printf "before: '%s'\n", $json->encode($data);
    print "$data->{qux}\n";
    printf "after: '%s'\n", $json->encode($data);
    
  2. or download this
    before: '{"qux":0.42,"foo":"bar"}'
    0.42
    after: '{"qux":"0.42","foo":"bar"}'