in reply to Re^4: Passing Along Arrays
in thread Passing Along Arrays
push @projects, [ \readOnly( "$pointerProj Data.txt", "B"];
Also, instead of using \readOnly(), what happens if you put it inside its own square brackets like the following?
push @projects, [ [ readOnly( "$pointerProj Data.txt" ) ] , "B"];
|
|---|