File: HelloWorld.pm

package info (click to toggle)
libtext-trac-perl 0.16-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 364 kB
  • ctags: 257
  • sloc: perl: 2,971; makefile: 2
file content (13 lines) | stat: -rwxr-xr-x 200 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
package Text::Trac::Macro::HelloWorld;

use strict;
use warnings;

our $VERSION = '0.16';

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

1;