I have a package with the following contents.
---
package abhinav::test;
use strict;
use warnings;
sub test1
{
return "\nHello World";
}
sub test2
{
my ($include) = @_;
foreach my $row (@$include)
{
push (@$row, @$row[0] + 1
On Sat, Jun 09, 2001 at 01:43:18PM +0800, bdale16 wrote:
> ? How do i affect this type of result to my existing code
> if a grade of a 90-100 = an A
> and a grade of 80-90 = a B
> and a grade of 70-80 = a C
> and a grade of 60-70 = a D
> and a grade of 0-60 = a F
You have the psuedo-code r