ptkwt / shell1.aracnet.com (Phil Tomson) wrote:
> partition this library into various related catagories (similar to the Perl
Win32 modules)
If all you want is a Perlish hierarchy, why not?:
module Process
def Process.fp
puts 'from Process#fp'
end
end
module Win32
attr_reader :Process
end
Win32::Process.fp