Don't think many languages support pointers the way C++ does. You can have references to subroutines in Perl though:



sub f
{
...
}

$ref = *f{CODE};