Help for this page

Select Code to Download


  1. or download this
    {
      "MONTH": "January"
    }
    
  2. or download this
    use JSON qw(from_json);
    use File::Slurp qw(slurp);
    
    my $hash = from_json( ~~slurp('test.json') );
    print $hash->{MONTH};