$a
= sequence 10;
$a
(0:4),
"\n"
;
$a
->inc->(0:4),
"\n"
;
# important!
no
PDL::NiceSlice;
# disable NiceSlice before(!) the data section
__END__
__Pdlpp__
# a silly function, really ;)
pp_def('inc',
Pars => 'i();[o] o()',
Code => '$o() = $i() + 1;',
);