Before I proceed what I am doing is it possible to return multiple values? for example:
while(!%inFileHandle.IsEOF())
{
%inLine = %inFileHandle.readLine() ;
// output read text to console.
return %inLine;
}
Would that return all of the lines read by %inFileHande.readLine or just return one and stop?