see also SKT and FCT
[p5sagit/Try-Tiny.git] / lib / Try / Tiny.pm
CommitLineData
3176feef 1package Try::Tiny;
12b7dc6c 2use 5.006;
052d8461 3# ABSTRACT: Minimal try/catch with proper preservation of $@
3176feef 4
877732d7 5our $VERSION = '0.31';
dbb907ac 6
3176feef 7use strict;
f9d19a00 8use warnings;
3176feef 9
b4207115 10use Exporter 5.57 'import';
f9d19a00 11our @EXPORT = our @EXPORT_OK = qw(try catch finally);
3176feef 12
f9d19a00 13use Carp;
6f114080 14$Carp::Internal{+__PACKAGE__}++;
15
2f7f4153 16BEGIN {
17 my $su = $INC{'Sub/Util.pm'} && defined &Sub::Util::set_subname;
18 my $sn = $INC{'Sub/Name.pm'} && eval { Sub::Name->VERSION(0.08) };
19 unless ($su || $sn) {
20 $su = eval { require Sub::Util; } && defined &Sub::Util::set_subname;
21 unless ($su) {
22 $sn = eval { require Sub::Name; Sub::Name->VERSION(0.08) };
23 }
24 }
25
26 *_subname = $su ? \&Sub::Util::set_subname
27 : $sn ? \&Sub::Name::subname
28 : sub { $_[1] };
29 *_HAS_SUBNAME = ($su || $sn) ? sub(){1} : sub(){0};
30}
5c9d800f 31
7cdef625 32my %_finally_guards;
80352025 33
7195fc08 34# Need to prototype as @ not $$ because of the way Perl evaluates the prototype.
35# Keeping it at $$ means you only ever get 1 sub because we need to eval in a list
36# context & not a scalar one
37
38sub try (&;@) {
8d2ee831 39 my ( $try, @code_refs ) = @_;
40
41 # we need to save this here, the eval block will be in scalar context due
42 # to $failed
43 my $wantarray = wantarray;
44
130617d9 45 # work around perl bug by explicitly initializing these, due to the likelyhood
46 # this will be used in global destruction (perl rt#119311)
47 my ( $catch, @finally ) = ();
8d2ee831 48
49 # find labeled blocks in the argument list.
50 # catch and finally tag the blocks by blessing a scalar reference to them.
51 foreach my $code_ref (@code_refs) {
8d2ee831 52
4c5b99d6 53 if ( ref($code_ref) eq 'Try::Tiny::Catch' ) {
9d0e0466 54 croak 'A try() may not be followed by multiple catch() blocks'
55 if $catch;
8d2ee831 56 $catch = ${$code_ref};
4c5b99d6 57 } elsif ( ref($code_ref) eq 'Try::Tiny::Finally' ) {
8d2ee831 58 push @finally, ${$code_ref};
59 } else {
4c5b99d6 60 croak(
61 'try() encountered an unexpected argument ('
62 . ( defined $code_ref ? $code_ref : 'undef' )
63 . ') - perhaps a missing semi-colon before or'
64 );
8d2ee831 65 }
66 }
67
2b0d579d 68 # FIXME consider using local $SIG{__DIE__} to accumulate all errors. It's
69 # not perfect, but we could provide a list of additional errors for
70 # $catch->();
71
5c9d800f 72 # name the blocks if we have Sub::Name installed
a1a5e0a2 73 _subname(caller().'::try {...} ' => $try)
2f7f4153 74 if _HAS_SUBNAME;
5c9d800f 75
80352025 76 # set up scope guards to invoke the finally blocks at the end.
8447a3bf 77 # this should really be a function scope lexical variable instead of
78 # file scope + local but that causes issues with perls < 5.20 due to
79 # perl rt#119311
7cdef625 80 local $_finally_guards{guards} = [
e32cfa2b 81 map Try::Tiny::ScopeGuard->_new($_),
8447a3bf 82 @finally
83 ];
80352025 84
8d2ee831 85 # save the value of $@ so we can set $@ back to it in the beginning of the eval
2b0d579d 86 # and restore $@ after the eval finishes
8d2ee831 87 my $prev_error = $@;
88
2b0d579d 89 my ( @ret, $error );
8d2ee831 90
2b0d579d 91 # failed will be true if the eval dies, because 1 will not be returned
92 # from the eval body
93 my $failed = not eval {
94 $@ = $prev_error;
8d2ee831 95
2b0d579d 96 # evaluate the try block in the correct context
97 if ( $wantarray ) {
98 @ret = $try->();
99 } elsif ( defined $wantarray ) {
100 $ret[0] = $try->();
101 } else {
102 $try->();
8d2ee831 103 };
104
f4b28b65 105 return 1; # properly set $failed to false
3db0dca6 106 };
2b0d579d 107
3db0dca6 108 # preserve the current error and reset the original value of $@
109 $error = $@;
2b0d579d 110 $@ = $prev_error;
8d2ee831 111
8d2ee831 112 # at this point $failed contains a true value if the eval died, even if some
113 # destructor overwrote $@ as the eval was unwinding.
114 if ( $failed ) {
80352025 115 # pass $error to the finally blocks
7cdef625 116 push @$_, $error for @{$_finally_guards{guards}};
80352025 117
8d2ee831 118 # if we got an error, invoke the catch block.
119 if ( $catch ) {
120 # This works like given($error), but is backwards compatible and
121 # sets $_ in the dynamic scope for the body of C<$catch>
122 for ($error) {
123 return $catch->($error);
124 }
125
126 # in case when() was used without an explicit return, the C<for>
127 # loop will be aborted and there's no useful return value
128 }
129
130 return;
131 } else {
132 # no failure, $@ is back to what it was, everything is fine
133 return $wantarray ? @ret : $ret[0];
134 }
3176feef 135}
136
7195fc08 137sub catch (&;@) {
8d2ee831 138 my ( $block, @rest ) = @_;
7195fc08 139
d2ae14ad 140 croak 'Useless bare catch()' unless wantarray;
9d0e0466 141
a1a5e0a2 142 _subname(caller().'::catch {...} ' => $block)
2f7f4153 143 if _HAS_SUBNAME;
8d2ee831 144 return (
145 bless(\$block, 'Try::Tiny::Catch'),
146 @rest,
147 );
3176feef 148}
149
7195fc08 150sub finally (&;@) {
8d2ee831 151 my ( $block, @rest ) = @_;
7195fc08 152
d2ae14ad 153 croak 'Useless bare finally()' unless wantarray;
9d0e0466 154
a1a5e0a2 155 _subname(caller().'::finally {...} ' => $block)
2f7f4153 156 if _HAS_SUBNAME;
8d2ee831 157 return (
158 bless(\$block, 'Try::Tiny::Finally'),
159 @rest,
160 );
7195fc08 161}
3176feef 162
b611f396 163{
3ef3a4f0 164 package # hide from PAUSE
165 Try::Tiny::ScopeGuard;
b611f396 166
8c34b0ef 167 use constant UNSTABLE_DOLLARAT => ("$]" < '5.013002') ? 1 : 0;
5f5e92c0 168
b611f396 169 sub _new {
170 shift;
171 bless [ @_ ];
172 }
173
174 sub DESTROY {
5f5e92c0 175 my ($code, @args) = @{ $_[0] };
176
177 local $@ if UNSTABLE_DOLLARAT;
178 eval {
179 $code->(@args);
180 1;
181 } or do {
182 warn
183 "Execution of finally() block $code resulted in an exception, which "
184 . '*CAN NOT BE PROPAGATED* due to fundamental limitations of Perl. '
185 . 'Your program will continue as if this event never took place. '
186 . "Original exception text follows:\n\n"
187 . (defined $@ ? $@ : '$@ left undefined...')
188 . "\n"
189 ;
190 }
b611f396 191 }
82ef0e61 192}
193
3176feef 194__PACKAGE__
195
196__END__
197
198=pod
199
3176feef 200=head1 SYNOPSIS
201
a2358317 202You can use Try::Tiny's C<try> and C<catch> to expect and handle exceptional
203conditions, avoiding quirks in Perl and common mistakes:
204
8d2ee831 205 # handle errors with a catch handler
206 try {
207 die "foo";
208 } catch {
209 warn "caught error: $_"; # not $@
210 };
3176feef 211
b999823d 212You can also use it like a standalone C<eval> to catch and ignore any error
a2358317 213conditions. Obviously, this is an extreme measure not to be undertaken
214lightly:
215
8d2ee831 216 # just silence errors
217 try {
218 die "foo";
219 };
3176feef 220
221=head1 DESCRIPTION
222
7195fc08 223This module provides bare bones C<try>/C<catch>/C<finally> statements that are designed to
1f7c5af6 224minimize common mistakes with eval blocks, and NOTHING else.
3176feef 225
226This is unlike L<TryCatch> which provides a nice syntax and avoids adding
ad10a9e2 227another call stack layer, and supports calling C<return> from the C<try> block to
3176feef 228return from the parent subroutine. These extra features come at a cost of a few
229dependencies, namely L<Devel::Declare> and L<Scope::Upper> which are
1f7c5af6 230occasionally problematic, and the additional catch filtering uses L<Moose>
231type constraints which may not be desirable either.
3176feef 232
1f7c5af6 233The main focus of this module is to provide simple and reliable error handling
3176feef 234for those having a hard time installing L<TryCatch>, but who still want to
235write correct C<eval> blocks without 5 lines of boilerplate each time.
236
237It's designed to work as correctly as possible in light of the various
b999823d 238pathological edge cases (see L</BACKGROUND>) and to be compatible with any style
3176feef 239of error values (simple strings, references, objects, overloaded objects, etc).
240
ad10a9e2 241If the C<try> block dies, it returns the value of the last statement executed in
242the C<catch> block, if there is one. Otherwise, it returns C<undef> in scalar
c065237e 243context or the empty list in list context. The following examples all
ad10a9e2 244assign C<"bar"> to C<$x>:
a5cd5f73 245
8d2ee831 246 my $x = try { die "foo" } catch { "bar" };
a7f27f92 247 my $x = try { die "foo" } || "bar";
248 my $x = (try { die "foo" }) // "bar";
a5cd5f73 249
8d2ee831 250 my $x = eval { die "foo" } || "bar";
a5cd5f73 251
ad10a9e2 252You can add C<finally> blocks, yielding the following:
7195fc08 253
8d2ee831 254 my $x;
255 try { die 'foo' } finally { $x = 'bar' };
256 try { die 'foo' } catch { warn "Got a die: $_" } finally { $x = 'bar' };
7195fc08 257
ad10a9e2 258C<finally> blocks are always executed making them suitable for cleanup code
259which cannot be handled using local. You can add as many C<finally> blocks to a
260given C<try> block as you like.
7195fc08 261
79039ae4 262Note that adding a C<finally> block without a preceding C<catch> block
263suppresses any errors. This behaviour is consistent with using a standalone
264C<eval>, but it is not consistent with C<try>/C<finally> patterns found in
265other programming languages, such as Java, Python, Javascript or C#. If you
0a64ef0f 266learned the C<try>/C<finally> pattern from one of these languages, watch out for
79039ae4 267this.
268
3176feef 269=head1 EXPORTS
270
1f7c5af6 271All functions are exported by default using L<Exporter>.
3176feef 272
7195fc08 273If you need to rename the C<try>, C<catch> or C<finally> keyword consider using
6157bcb8 274L<Sub::Import> to get L<Sub::Exporter>'s flexibility.
3176feef 275
276=over 4
277
7195fc08 278=item try (&;@)
3176feef 279
ad10a9e2 280Takes one mandatory C<try> subroutine, an optional C<catch> subroutine and C<finally>
7195fc08 281subroutine.
3176feef 282
283The mandatory subroutine is evaluated in the context of an C<eval> block.
284
1f7c5af6 285If no error occurred the value from the first block is returned, preserving
286list/scalar context.
3176feef 287
288If there was an error and the second subroutine was given it will be invoked
289with the error in C<$_> (localized) and as that block's first and only
290argument.
291
2dc64249 292C<$@> does B<not> contain the error. Inside the C<catch> block it has the same
293value it had before the C<try> block was executed.
294
1f7c5af6 295Note that the error may be false, but if that happens the C<catch> block will
1d64c1ad 296still be invoked.
3176feef 297
ad10a9e2 298Once all execution is finished then the C<finally> block, if given, will execute.
7195fc08 299
ae5ed1be 300=item catch (&;@)
1f7c5af6 301
302Intended to be used in the second argument position of C<try>.
3176feef 303
7195fc08 304Returns a reference to the subroutine it was given but blessed as
305C<Try::Tiny::Catch> which allows try to decode correctly what to do
306with this code reference.
3176feef 307
8d2ee831 308 catch { ... }
3176feef 309
ad10a9e2 310Inside the C<catch> block the caught error is stored in C<$_>, while previous
2dc64249 311value of C<$@> is still available for use. This value may or may not be
312meaningful depending on what happened before the C<try>, but it might be a good
313idea to preserve it in an error stack.
ac4f5f9f 314
0a0641f9 315For code that captures C<$@> when throwing new errors (i.e.
316L<Class::Throwable>), you'll need to do:
317
8d2ee831 318 local $@ = $_;
0a0641f9 319
ae5ed1be 320=item finally (&;@)
7195fc08 321
322 try { ... }
323 catch { ... }
324 finally { ... };
325
326Or
327
328 try { ... }
329 finally { ... };
330
331Or even
332
333 try { ... }
334 finally { ... }
335 catch { ... };
336
ad10a9e2 337Intended to be the second or third element of C<try>. C<finally> blocks are always
7195fc08 338executed in the event of a successful C<try> or if C<catch> is run. This allows
339you to locate cleanup code which cannot be done via C<local()> e.g. closing a file
340handle.
341
ad10a9e2 342When invoked, the C<finally> block is passed the error that was caught. If no
343error was caught, it is passed nothing. (Note that the C<finally> block does not
344localize C<$_> with the error, since unlike in a C<catch> block, there is no way
658a90e5 345to know if C<$_ == undef> implies that there were no errors.) In other words,
346the following code does just what you would expect:
d6e0f0df 347
348 try {
349 die_sometimes();
350 } catch {
351 # ...code run in case of error
352 } finally {
353 if (@_) {
354 print "The try block died with: @_\n";
355 } else {
356 print "The try block ran without error.\n";
357 }
358 };
359
ad10a9e2 360B<You must always do your own error handling in the C<finally> block>. C<Try::Tiny> will
7195fc08 361not do anything about handling possible errors coming from code located in these
362blocks.
363
5f5e92c0 364Furthermore B<exceptions in C<finally> blocks are not trappable and are unable
365to influence the execution of your program>. This is due to limitation of
366C<DESTROY>-based scope guards, which C<finally> is implemented on top of. This
367may change in a future version of Try::Tiny.
368
7195fc08 369In the same way C<catch()> blesses the code reference this subroutine does the same
370except it bless them as C<Try::Tiny::Finally>.
371
3176feef 372=back
373
374=head1 BACKGROUND
375
376There are a number of issues with C<eval>.
377
378=head2 Clobbering $@
379
ad10a9e2 380When you run an C<eval> block and it succeeds, C<$@> will be cleared, potentially
a717a876 381clobbering an error that is currently being caught.
3176feef 382
1f7c5af6 383This causes action at a distance, clearing previous errors your caller may have
384not yet handled.
385
386C<$@> must be properly localized before invoking C<eval> in order to avoid this
387issue.
3176feef 388
b1ab4ef0 389More specifically,
390L<before Perl version 5.14.0|perl5140delta/"Exception Handling">
391C<$@> was clobbered at the beginning of the C<eval>, which
392also made it impossible to capture the previous error before you die (for
511c05ca 393instance when making exception objects with error stacks).
394
2b0d579d 395For this reason C<try> will actually set C<$@> to its previous value (the one
396available before entering the C<try> block) in the beginning of the C<eval>
397block.
511c05ca 398
3176feef 399=head2 Localizing $@ silently masks errors
400
ad10a9e2 401Inside an C<eval> block, C<die> behaves sort of like:
3176feef 402
8d2ee831 403 sub die {
404 $@ = $_[0];
405 return_undef_from_eval();
406 }
3176feef 407
408This means that if you were polite and localized C<$@> you can't die in that
1f7c5af6 409scope, or your error will be discarded (printing "Something's wrong" instead).
3176feef 410
411The workaround is very ugly:
412
8d2ee831 413 my $error = do {
414 local $@;
415 eval { ... };
416 $@;
417 };
3176feef 418
8d2ee831 419 ...
420 die $error;
3176feef 421
422=head2 $@ might not be a true value
423
424This code is wrong:
425
8d2ee831 426 if ( $@ ) {
427 ...
428 }
3176feef 429
1f7c5af6 430because due to the previous caveats it may have been unset.
431
1d64c1ad 432C<$@> could also be an overloaded error object that evaluates to false, but
433that's asking for trouble anyway.
3176feef 434
b1ab4ef0 435The classic failure mode (fixed in L<Perl 5.14.0|perl5140delta/"Exception Handling">) is:
3176feef 436
8d2ee831 437 sub Object::DESTROY {
438 eval { ... }
439 }
3176feef 440
8d2ee831 441 eval {
442 my $obj = Object->new;
3176feef 443
8d2ee831 444 die "foo";
445 };
3176feef 446
8d2ee831 447 if ( $@ ) {
3176feef 448
8d2ee831 449 }
3176feef 450
1f7c5af6 451In this case since C<Object::DESTROY> is not localizing C<$@> but still uses
1d64c1ad 452C<eval>, it will set C<$@> to C<"">.
3176feef 453
1f7c5af6 454The destructor is called when the stack is unwound, after C<die> sets C<$@> to
3176feef 455C<"foo at Foo.pm line 42\n">, so by the time C<if ( $@ )> is evaluated it has
1f7c5af6 456been cleared by C<eval> in the destructor.
3176feef 457
1f7c5af6 458The workaround for this is even uglier than the previous ones. Even though we
459can't save the value of C<$@> from code that doesn't localize, we can at least
ad10a9e2 460be sure the C<eval> was aborted due to an error:
3176feef 461
8d2ee831 462 my $failed = not eval {
463 ...
3176feef 464
8d2ee831 465 return 1;
466 };
3176feef 467
1f7c5af6 468This is because an C<eval> that caught a C<die> will always return a false
469value.
3176feef 470
305d5b23 471=head1 ALTERNATE SYNTAX
3176feef 472
305d5b23 473Using Perl 5.10 you can use L<perlsyn/"Switch statements"> (but please don't,
474because that syntax has since been deprecated because there was too much
475unexpected magical behaviour).
3176feef 476
7788aa10 477=for stopwords topicalizer
478
1f7c5af6 479The C<catch> block is invoked in a topicalizer context (like a C<given> block),
480but note that you can't return a useful value from C<catch> using the C<when>
27293e40 481blocks without an explicit C<return>.
3176feef 482
483This is somewhat similar to Perl 6's C<CATCH> blocks. You can use it to
484concisely match errors:
485
8d2ee831 486 try {
487 require Foo;
488 } catch {
489 when (/^Can't locate .*?\.pm in \@INC/) { } # ignore
490 default { die $_ }
491 };
3176feef 492
493=head1 CAVEATS
494
495=over 4
496
497=item *
498
013dca8f 499C<@_> is not available within the C<try> block, so you need to copy your
7788aa10 500argument list. In case you want to work with argument values directly via C<@_>
013dca8f 501aliasing (i.e. allow C<$_[1] = "foo">), you need to pass C<@_> by reference:
318cb1eb 502
8d2ee831 503 sub foo {
504 my ( $self, @args ) = @_;
505 try { $self->bar(@args) }
506 }
013dca8f 507
508or
509
8d2ee831 510 sub bar_in_place {
511 my $self = shift;
512 my $args = \@_;
513 try { $_ = $self->bar($_) for @$args }
514 }
318cb1eb 515
516=item *
517
518C<return> returns from the C<try> block, not from the parent sub (note that
519this is also how C<eval> works, but not how L<TryCatch> works):
520
6651956b 521 sub parent_sub {
8d2ee831 522 try {
523 die;
524 }
525 catch {
526 return;
527 };
6651956b 528
8d2ee831 529 say "this text WILL be displayed, even though an exception is thrown";
6651956b 530 }
531
532Instead, you should capture the return value:
533
534 sub parent_sub {
8d2ee831 535 my $success = try {
536 die;
537 1;
86b8a58a 538 };
8d2ee831 539 return unless $success;
6651956b 540
8d2ee831 541 say "This text WILL NEVER appear!";
6651956b 542 }
d7aab6fa 543 # OR
c87ad8ce 544 sub parent_sub_with_catch {
545 my $success = try {
546 die;
547 1;
548 }
549 catch {
550 # do something with $_
551 return undef; #see note
552 };
d7aab6fa 553 return unless $success;
554
555 say "This text WILL NEVER appear!";
c87ad8ce 556 }
318cb1eb 557
ad10a9e2 558Note that if you have a C<catch> block, it must return C<undef> for this to work,
559since if a C<catch> block exists, its return value is returned in place of C<undef>
6651956b 560when an exception is thrown.
318cb1eb 561
562=item *
563
1f7c5af6 564C<try> introduces another caller stack frame. L<Sub::Uplevel> is not used. L<Carp>
c12e626f 565will not report this when using full stack traces, though, because
566C<%Carp::Internal> is used. This lack of magic is considered a feature.
3176feef 567
7788aa10 568=for stopwords unhygienically
569
3176feef 570=item *
571
57c50f41 572The value of C<$_> in the C<catch> block is not guaranteed to be the value of
573the exception thrown (C<$@>) in the C<try> block. There is no safe way to
7788aa10 574ensure this, since C<eval> may be used unhygienically in destructors. The only
57c50f41 575guarantee is that the C<catch> will be called if an exception is thrown.
3176feef 576
a5cd5f73 577=item *
578
579The return value of the C<catch> block is not ignored, so if testing the result
580of the expression for truth on success, be sure to return a false value from
581the C<catch> block:
582
8d2ee831 583 my $obj = try {
584 MightFail->new;
585 } catch {
586 ...
a5cd5f73 587
8d2ee831 588 return; # avoid returning a true value;
589 };
a5cd5f73 590
8d2ee831 591 return unless $obj;
a5cd5f73 592
eaca95b7 593=item *
594
595C<$SIG{__DIE__}> is still in effect.
596
597Though it can be argued that C<$SIG{__DIE__}> should be disabled inside of
598C<eval> blocks, since it isn't people have grown to rely on it. Therefore in
599the interests of compatibility, C<try> does not disable C<$SIG{__DIE__}> for
600the scope of the error throwing code.
601
cbfb5327 602=item *
603
604Lexical C<$_> may override the one set by C<catch>.
605
606For example Perl 5.10's C<given> form uses a lexical C<$_>, creating some
607confusing behavior:
608
8d2ee831 609 given ($foo) {
610 when (...) {
611 try {
612 ...
613 } catch {
614 warn $_; # will print $foo, not the error
615 warn $_[0]; # instead, get the error like this
616 }
617 }
618 }
cbfb5327 619
305d5b23 620Note that this behavior was changed once again in
621L<Perl5 version 18|https://metacpan.org/module/perldelta#given-now-aliases-the-global-_>.
7788aa10 622However, since the entirety of lexical C<$_> is now L<considered experimental
aaf0d61f 623|https://metacpan.org/module/perldelta#Lexical-_-is-now-experimental>, it
624is unclear whether the new version 18 behavior is final.
625
3176feef 626=back
627
628=head1 SEE ALSO
629
630=over 4
631
1b81d0a5 632=item L<Syntax::Keyword::Try>
633
634Only available on perls >= 5.14, with a slightly different syntax (e.g. no trailing C<;> because
635it's actually a keyword, not a sub, but this means you can C<return> and C<next> within it). Use
636L<Feature::Compat::Try> to automatically switch to the native C<try> syntax in newer perls (when
637available). See also L<Try Catch Exception Handling|perlsyn/Try-Catch-Exception-Handling>.
638
3176feef 639=item L<TryCatch>
640
641Much more feature complete, more convenient semantics, but at the cost of
642implementation complexity.
643
9bc603cb 644=item L<autodie>
645
646Automatic error throwing for builtin functions and more. Also designed to
647work well with C<given>/C<when>.
648
f8227e43 649=item L<Throwable>
650
651A lightweight role for rolling your own exception classes.
652
3176feef 653=item L<Error>
654
655Exception object implementation with a C<try> statement. Does not localize
656C<$@>.
657
658=item L<Exception::Class::TryCatch>
659
660Provides a C<catch> statement, but properly calling C<eval> is your
661responsibility.
662
663The C<try> keyword pushes C<$@> onto an error stack, avoiding some of the
1d64c1ad 664issues with C<$@>, but you still need to localize to prevent clobbering.
3176feef 665
666=back
667
faecd5a0 668=head1 LIGHTNING TALK
669
670I gave a lightning talk about this module, you can see the slides (Firefox
671only):
672
9b3383e4 673L<http://web.archive.org/web/20100628040134/http://nothingmuch.woobling.org/talks/takahashi.xul>
faecd5a0 674
675Or read the source:
676
2245f1ae 677L<http://web.archive.org/web/20100305133605/http://nothingmuch.woobling.org/talks/yapc_asia_2009/try_tiny.yml>
faecd5a0 678
3176feef 679=cut