File: GoodTestFont.pm

package info (click to toggle)
libimager-perl 1.000%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 6,204 kB
  • ctags: 4,002
  • sloc: perl: 30,288; ansic: 27,490; sh: 51; makefile: 48; cpp: 4
file content (13 lines) | stat: -rw-r--r-- 189 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
package GoodTestFont;
use strict;
use vars '@ISA';

# this doesn't do enough to be a font

sub new {
  my ($class, %opts) = @_;

  return bless \%opts, $class; # as long as it's true
}

1;