Howdy - Perl extension for testing Xlib extensibility.


ptkFAQ documentation Contained in the ptkFAQ distribution.

Index


Code Index:

NAME

Top

Howdy - Perl extension for testing Xlib extensibility.

SYNOPSIS

Top

  use Howdy;
  blah blah blah

DESCRIPTION

Top

This "module" is simply to test a _very_basic_ Xlib extension to perl. If you can get this to build and work on your computer you should have very little trouble getting the Tk extension to perl working on your system.

Blah blah blah.

AUTHOR

Top

Peter Prymmer, pvhp@lns62.lns.cornell.edu

SEE ALSO

Top

perl(1).


ptkFAQ documentation Contained in the ptkFAQ distribution.

package Howdy;

use strict;
use vars qw($VERSION @ISA @EXPORT);

require Exporter;
require DynaLoader;

@ISA = qw(Exporter DynaLoader);
# Items to export into callers namespace by default. Note: do not export
# names by default without a very good reason. Use EXPORT_OK instead.
# Do not simply export all your public functions/methods/constants.
@EXPORT = qw(
	
);
$VERSION = '0.01';

bootstrap Howdy $VERSION;

# Preloaded methods go here.

# Autoload methods go after =cut, and are processed by the autosplit program.

1;
__END__
# Below is the stub of documentation for your module. You better edit it!