CristianLuca
Programmer
struct grades = {
math => '@';
};
$grades->{math} = (1,2,3); # why can't i do that ? How can this be done ?
my @array = $grades->{math}; # why is this not taking grades->math elements and copies them into array ? How can this be done ?
Than you in advance,
CL
math => '@';
};
$grades->{math} = (1,2,3); # why can't i do that ? How can this be done ?
my @array = $grades->{math}; # why is this not taking grades->math elements and copies them into array ? How can this be done ?
Than you in advance,
CL