The following programs work fine in command window,
but it makes error when complie; the complier doesn't
know VV is an array.
Please tell me what's wrong.
*-------------------- AA.prg --------*
DIMENSION GG(2,3)
GG(1,1) = 'X'
GG(2,3) = 'Y'
=BB(@GG)
*-------------------- BB.prg --------*
LPARAMETERS VV
? VV(1,1)
? VV(2,3)
but it makes error when complie; the complier doesn't
know VV is an array.
Please tell me what's wrong.
*-------------------- AA.prg --------*
DIMENSION GG(2,3)
GG(1,1) = 'X'
GG(2,3) = 'Y'
=BB(@GG)
*-------------------- BB.prg --------*
LPARAMETERS VV
? VV(1,1)
? VV(2,3)