Help for this page

Select Code to Download


  1. or download this
        
        my $text = '{"a":"x","b":true}'; 
        my $result = decode_json($text);
        my $rec = XMLout( $result, RootName => 'root', SuppressEmpty => 1)
    +;
    
  2. or download this
        $result = {
                'a' => 'x',
                'b' => bless( do{\(my $o = 1)}, 'JSON::XS::Boolean' )
              };