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

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

add YAPC::Asia 2008 talks

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