File: C.pm

package info (click to toggle)
libobject-realize-later-perl 0.22-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 172 kB
  • sloc: perl: 421; makefile: 2
file content (11 lines) | stat: -rw-r--r-- 133 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11

use strict;
use warnings;

package C;
use overload '""' => sub { ref(shift) };

sub new() { bless {}, shift }
sub c()   { 'c' }

1;