Help for this page

Select Code to Download


  1. or download this
    my %hash = ( 
        some_long_key => {
            INCLUDE_PATH => __PACKAGE__->path_to('www/templates/tt')
        }
    );
    
  2. or download this
    my $process = Background->new($^X, "-I$lib",
                                  "-MMyLong:Namespace::Bar::Bat",
                                  "-e 1", "other", "arguments", "here");
    
  3. or download this
    my $process = Background->new( $^X, "-I$lib", "-MMyLong:Namespace::Bar
    +::Bat",
        "-e 1", "other", "arguments", "here" );
    
  4. or download this
    my $process = Background->new(
        $^X,    "-I$lib", "-MMyLong:Namespace::Bar::Bat",
        "-e 1", "other",  "arguments", "here",
    );
    
  5. or download this
    my $process = Background->new(
        $^X,
        "-I$lib",
    ...
        "arguments",
        "here",
    );