Hi Dewey,
> How do I gain permission to create a new package in the "Graph::" namespace?
>
> Request permission to create a new package, Graph::Dijkstra, which implements
> Dijkstra's shortest path algorithms efficiently in Perl (though it does use
> an underlying xs module) that adds input / output file methods not found in
> existing packages.
Your problem is that the file for the module is
lib/Graph/Dijkstra.pm
But the name of the package declared inside is:
package Graph::Dijsktra;
Notice the difference in spelling between “Dijkstra” and “Dijsktra”!
Cheers,
Neil