NAME ^

functions.t - testing functions

DESCRIPTION ^

Defining and calling functions.

sub echo_count( $count ) { print "count: $count\n"; }

echo_count( 123456 );


parrot