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;