MKDoc::Core::Plugin::It_Worked - Very simple plugin.


MKDoc-Core documentation Contained in the MKDoc-Core distribution.

Index


Code Index:

NAME

Top

MKDoc::Core::Plugin::It_Worked - Very simple plugin.

SUMMARY

Top

This is the equivalent of a 'Hello World' program, except it displays an Apache-style 'It Worked!'.

AUTHOR

Top

Copyright 2003 - MKDoc Holdings Ltd.

Author: Jean-Michel Hiver

This module is free software and is distributed under the same license as Perl itself. Use it at your own risk.

SEE ALSO

Top

  L<Petal> TAL for perl
  MKDoc: http://www.mkdoc.com/

Help us open-source MKDoc. Join the mkdoc-modules mailing list:

  mkdoc-modules@lists.webarch.co.uk



MKDoc-Core documentation Contained in the MKDoc-Core distribution.

package MKDoc::Core::Plugin::It_Worked;
use base qw /MKDoc::Core::Plugin/;
use strict;
use warnings;


sub location { '/' }


1;


__END__