functions.t - testing functions
Defining and calling functions.
sub echo_count( $count ) { print "count: $count\n"; }
echo_count( 123456 );