Back to To Be Determined. On to To Be Determined.
Held Wednesday, January 24, 2001
Summary
Today we consider issues in the design of Perl programs, including documentation, packages, modules, and objects.
Notes
Overview
PackageName.pm.
package PackageName;
require Exporter;
our @ISA = qw(Exporter); # Says we can export symbols
our @EXPORT = qw(symbols); # Says we export these symbols
# by default
our @EXPORT_OK = qw(symbols); # Says we can export these
# symbols by request
our $VERSION = version-number;
variables-and-procedures;
1; # Ends the package
use PackageName; use Packagename(symbols); Module::thing
object->method(params);
ObjectModule::method(object, params);
Back to To Be Determined. On to To Be Determined.
[Current]
[Glance]
[Honesty]
[Instructions]
[Links]
[News]
[Search]
[Syllabus]
Primary
[Examples]
[Exams]
[Handouts]
[Homework]
[Labs]
[Outlines]
[Quizzes]
[Readings]
[Reference]
Sets
[Login]
[Drop Box]
[Discussions]
[Grades]
Blackboard
[SamR]
Links
Disclaimer: I usually create these pages on the fly. This means that they are rarely proofread and may contain bad grammar and incorrect details. It also means that I may update them regularly (see the history for more details). Feel free to contact me with any suggestions for changes.
This page was generated by Siteweaver on Tue Feb 6 09:57:14 2001.
This page may be found at http://www.cs.grinnell.edu/~rebelsky/Courses/CS397/2001S/outline.03.html.
You may validate
this page's HTML.
The source was last modified Tue Jan 23 09:42:04 2001.