Perl6: load functions into other namespace
问题 I want to use Perl6 Modules to group some functions, i often use. Because this functions are all loosely coupled, I don't like to add them in a class. I like the idea of use , where you can select, which functions should be imported, but I don't like it, that the functions, which are imported are then stored in the global namespace. For example if I have a file my_util.pm6 : #content of my_util.pm6 unit module my_util; our sub greet($who) is export(:greet) { say $who; } sub greet2($who) is