File: MyApp.pm

package info (click to toggle)
libclass-forward-perl 0.100006-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd, stretch
  • size: 124 kB
  • ctags: 12
  • sloc: perl: 137; makefile: 2
file content (14 lines) | stat: -rw-r--r-- 126 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package MyApp;

use strict;
use warnings;

sub new {
    bless {}, shift;
}

sub hello_world {
    return 'Hello World'
}

1;