Skip to content

Commit

Permalink
Update README to be Markdown for 2018 CPAN-PRC
Browse files Browse the repository at this point in the history
Convert text README to Markdown for better readability on Github.
  • Loading branch information
scottchiefbaker committed Jan 25, 2018
1 parent 8a4e74b commit cc2a838
Showing 1 changed file with 10 additions and 9 deletions.
19 changes: 10 additions & 9 deletions README → README.md
Original file line number Diff line number Diff line change
@@ -1,25 +1,26 @@
Scope-Guard version 0.21
========================
# Scope-Guard version 0.21

This module provides a convenient way to perform cleanup or other forms of resource
management at the end of a scope. It is particularly useful when dealing with exceptions:
the Scope::Guard constructor takes a reference to a subroutine that is guaranteed to
the `Scope::Guard` constructor takes a reference to a subroutine that is guaranteed to
be called even if the thread of execution is aborted prematurely. This effectively allows
lexically-scoped "promises" to be made that are automatically honoured by perl's garbage
collector.

For more information, see: http://www.drdobbs.com/cpp/184403758

INSTALLATION
### INSTALLATION

To install this module, type the following:

perl Makefile.PL
make
make test
make install
```
perl Makefile.PL
make
make test
make install
```

COPYRIGHT AND LICENCE
### COPYRIGHT AND LICENCE

Copyright (c) 2005-2015 by chocolateboy <chocolate@cpan.org>

Expand Down

0 comments on commit cc2a838

Please sign in to comment.