Sponsoring The Perl Toolchain Summit 2025: Help make this important event another success Learn more

#!/usr/bin/env perl
use B::Deparse ();
my $deparse = B::Deparse->new;
#my $code = \&gsl_matrix_rows;
my $code = \&RPerl::Operation::Expression::Operator::GSLFunctions::gsl_matrix_rows;
print 'sub ', $deparse->coderef2text($code), "\n";