File: PKG2.pm

package info (click to toggle)
libinline-java-perl 0.58~dfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 964 kB
  • ctags: 684
  • sloc: perl: 4,717; java: 2,844; makefile: 35
file content (14 lines) | stat: -rw-r--r-- 143 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package PKG2;

use strict;
use warnings;
use PKG1 ;

sub callpkg1 {
	print "allo1\n" ;
	print PKG1::PKG1->hello() ;
	print "allo2\n" ;
}


1 ;