File: multi_packages.pl

package info (click to toggle)
prt 0.22-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 404 kB
  • sloc: perl: 1,185; makefile: 3
file content (12 lines) | stat: -rw-r--r-- 133 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
use strict;
use warnings;

package Bye {
    sub bye { "bye" }
};

package Hello {
    sub hello { "hello" }
};

print Hello->hello;