plotting a straight horizontal line

How can I plot a straight horizontal line using perl in unix solaris environment?
Please suggest.

Pooja

Typically, I'll just type underline characters:

__________________________________________________

But seriously, folks, not enough information in this question.

perl -e "print \"-\" x 65;"
nawk 'BEGIN{$65=OFS="-";print}'

FYI, the link