in reply to Re: Where does time come from? CORE::GLOBAL:time no honored. (order)
in thread Where does time come from? CORE::GLOBAL:time no honored.
use strict; use warnings; print("Get time1\n"); my $time1 = time(); BEGIN { print("Override\n"); no warnings qw(redefine); *CORE::GLOBAL::time = sub { 4 }; } print("Get time2\n"); my $time2 = time(); print($time1, "\n"); print($time2, "\n");
Override Get time1 Get time2 1238164958 4
|
|---|