in reply to Re: trouble taking reference of function
in thread trouble taking reference of function

Beware of prototypes when dealing with functions and named operators.
$ perl -wle'print sin(0.5) == sub { sin(@_) }->(0.5) ?1:0' 0 $ perl -wle'print sin(0.5) == sub { sin($_[0]) }->(0.5) ?1:0' 1

Update: Added code.

Replies are listed 'Best First'.
Re^3: trouble taking reference of function
by Lawliet (Curate) on Mar 03, 2009 at 22:00 UTC

    Huh? Why does that happen?

    And you didn't even know bears could type.

        Oh, so it returns the sine of the number of elements passed to the function, right?

        And you didn't even know bears could type.