Help for this page
package MySelf; my $var='Hello'; ... my::world(); # Calls the World function from this package NotMe::planet(); # Sees my::world but not $var unDWIM();
package MySelf; package Ext ... }; Ext::Dumper(Ext::csv(in => "data.csv"));