in reply to Re^2: I am geting an unhelpful error message. Not sure how to debug it.
in thread I am geting an unhelpful error message. Not sure how to debug it.

Yes "reverse" works with scalars as well.(When maintained in a scalar context)

It all depends on what you want to end-up with. Reverse on a scalar reverses the letters (Make sure you do this in a SCALAR context). On an array, it reverses the order of the elements.

One way to achieve reversal would be to take the scalar, 'split' it into an array, and reverse the array.

             I hope life isn't a big joke, because I don't get it.
                   -SNL

  • Comment on Re^3: I am geting an unhelpful error message. Not sure how to debug it.