First time here? Check out the FAQ!
answered 2016-11-30 05:16:06 +0100
Probably you have a comma instead of a semi-colon.
Try replacing print " The matrix is ", show(A) by print " The matrix is "; show(A)?
print " The matrix is ", show(A)
print " The matrix is "; show(A)