1package OtherTypes; 2no warnings; 3 4our $foo = 23; 5our @foo = "bar"; 6our %foo = (mouse => "trap"); 7open foo, "<", $0; 8 9format foo = 10foo 11. 12 13BEGIN { 14 $main::pvio = *foo{IO}; 15 $main::pvfm = *foo{FORMAT}; 16} 17 18sub foo { 1 } 19 20use autodie 'foo'; 21 221; 23