http://www.perlmonks.org?node_id=128862


in reply to Printing a reference to the output of map

Thanks everyone. I found the error. It was in the line preceding my call to map.

Instead of using Perl's // to create a comment I was using /* */ to create a comment, which is gibberish to perl.

  • Comment on Re: Printing a reference to the output of map

Replies are listed 'Best First'.
Re: Re: Printing a reference to the output of map
by danboo (Beadle) on Dec 03, 2001 at 20:13 UTC
    For the record '#' is used for creating comments in perl. Hopefully you figured that out already.

    - danboo