File: TryUser.pm

package info (click to toggle)
libtry-tiny-perl 0.20-1~bpo70%2B1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy-backports
  • size: 188 kB
  • sloc: perl: 494; makefile: 2
file content (9 lines) | stat: -rw-r--r-- 141 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
package TryUser;

use Try::Tiny;

sub test_try { try { } }
sub test_catch { try { } catch { } }
sub test_finally { try { } finally { } }

1;