#! /usr/bin/perl # counts - illustrate code using module # count number of digits in specified range # use strict; use warnings; # Invoke the module contatining the "count" instrutction; use Counter; count (1, 4); # use it count (3, 7); # End counts