The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

PNI::Guides::Scripting

OVERVIEW

This document contains ... nothing concrete by now (:

HELLO WORLD

    use PNI::Scenario;
    my $scen = PNI::Scenario->new;

    my $node = $scen->add_node( type => 'Perlfunc::Print' );
    
    $node->in('list')->data( [ 'Hello World!', "\n" ] );

    $scen->task;