File: HelloWorld.pm

package info (click to toggle)
libtext-trac-perl 0.15-1
  • links: PTS
  • area: main
  • in suites: squeeze, wheezy
  • size: 332 kB
  • ctags: 259
  • sloc: perl: 2,935; makefile: 40
file content (11 lines) | stat: -rwxr-xr-x 176 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
package Text::Trac::Macro::HelloWorld;

use strict;
use warnings;

sub process {
    my ( $class, $c, @args ) = @_;
    return "Hello World, args = " . join ', ', @args;
}

1;