root/docs/yappo/20080515-yapcasia2008/run-with_hintbits.pl

Revision 11698, 458 bytes (checked in by yappo, 8 months ago)

add YAPC::Asia 2008 talks

Line 
1use strict;
2use warnings;
3use Data::Dumper;
4
5print "---- running\n";
6use with_hintbits;
7warn "run: " . Dumper(%^H);
8BEGIN { warn Dumper(%^H) }
9no with_hintbits;
10warn "run: " . Dumper(%^H);
11BEGIN { warn Dumper(%^H) }
12
13use with_hintbits 'larry';
14warn "run: " . Dumper(%^H);
15BEGIN { warn Dumper(%^H) }
16if (1) {
17    use with_hintbits 'ingy';
18    warn "run: " . Dumper(%^H);
19    BEGIN { warn Dumper(%^H) }
20}
21warn "run: " . Dumper(%^H);
22BEGIN { warn Dumper(%^H) }
Note: See TracBrowser for help on using the browser.