File: package_block_statement.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 (8 lines) | stat: -rw-r--r-- 93 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
use strict;
use warnings;

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

print Hello->hello;