Help for this page

Select Code to Download


  1. or download this
      $album = Album->new;
      $album->add_song(Song->new(...));
      ...
    
  2. or download this
     $as_json = q{ { album_title: ...,
                   songs: [ { song_title: ...,  },
    ...
                          ]
                    }
                 };
    
  3. or download this
      $as_perl = JSON->new->decode($as_json);