7 lines
163 B
Perl
7 lines
163 B
Perl
#!C:/perl/bin
|
|
|
|
$stringvalue = "Perl is a great language";
|
|
$stringlength = length($stringvalue);
|
|
|
|
print "\n\nThe length of the string is: $stringlength\n\n";
|