File: Hello.pm

package info (click to toggle)
libpar-perl 1.020-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 356 kB
  • sloc: perl: 1,047; makefile: 2; sh: 2
file content (8 lines) | stat: -rw-r--r-- 75 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
package Hello;

use strict;
sub hello {
    print "Hello, world!\n";
}

1;