在 Sep 11, 2006 2:07 PM 時,Trey Harris 寫到:
In a message dated Mon, 11 Sep 2006, Richard Hainsworth writes:I am trying to find out how to use (in perl6) perl5 modules that contain subroutines.Imports from Perl 5 modules don't currently work.
Actually, explicit imports do work (as of a couple weeks ago): use perl5:Time::gmtime <gmtime>; say gmtime.wday; Implicit imports is not yet supported, though... Audrey