File: Test2.pm

package info (click to toggle)
libjson-perl 1.00-2
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 168 kB
  • ctags: 116
  • sloc: perl: 1,158; makefile: 45
file content (10 lines) | stat: -rwxr-xr-x 94 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10

package MyApp::Test2;

sub echo {
	my $server = shift;
	my ($arg)  = @_;
	return $arg;
}

1;