http://www.perlmonks.org?node_id=1025846


in reply to Re: pp with gui
in thread pp with gui

 pp -e " use Data::Dump; dd\@ARGV; dd\@INC; dd\%INC; dd\%ENV; use PAR; dd[split/[\r\n]+/,PAR::read_file(q{MANIFEST})]; "

Replies are listed 'Best First'.
Re^3: pp with gui
by Anonymous Monk on Mar 28, 2013 at 04:14 UTC
    #!/usr/bin/perl -- use strict; use warnings; use Data::Dump; use PAR; dd { 'PAR_MANIFEST' => [split/[\r\n]+/,PAR::read_file(q{MANIFEST})], '%INC' => \%INC, '%ENV' => \%ENV, '@INC' => \@INC, '@ARGV' => \@ARGV, };
      Thanks, I am slowly going through all the information you posted and will try adding the code you sent. I don't know if this makes a difference but I noticed when I click on the .exe a small spinning circle appears briefly and then goes away. I assume that means it tries to load and fails. I will report back when I get debugging working.