added perms.t test to test write_file's perms option
[urisagit/Perl-Docs.git] / t / over.pl
CommitLineData
8ed110f9 1
2print prototype( 'CORE::sysread' ), "\n" ;
3
4BEGIN {
5
6 *CORE::GLOBAL::time = sub { CORE::time };
7}
8
9print time(), "\n" ;
10
11BEGIN{
12local *CORE::GLOBAL::time = sub { 123 };
13
14print time(), "\n" ;
15}
16
17print time(), "\n" ;