1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
|
.help package Feb86 language
.ih
NAME
package -- define a new package
.ih
USAGE
package pkgname
.ih
PARAMETERS
.ls pkgname
The name of the new package to be created. If called with no arguments,
\fIpackage\fR lists the currently defined packages in task search order.
.le
.ih
DESCRIPTION
The \fIpackage\fR task creates a new package.
The newly defined package becomes the current package, and the prompt
is changed to use the first two characters of the package name.
The package command does not define any tasks within the package, that
is done by subsequent \fItask\fR declarations. Subsequent \fItask\fR
declarations will add tasks to the task list for the new package.
The new package remains the "current package" until another \fIpackage\fR
command is entered, or until the task in which the package command was
entered is terminated.
Normally \fIpackage\fR will be used at the beginning of a script to define
the package name. It will be followed by one or more task definitions,
and then by a \fIcl\fR or \fIclbye\fR to interpret user commands,
until the command \fIbye\fR is entered by the user, at which time the
package script task terminates, discarding the package and any associated
definitions.
.ih
EXAMPLES
1. The use of \fIpackage\fR in a package script task.
.nf
package lists
set lists = "pkg$lists/"
task table,
tokens,
unique,
lintran,
columns,
words = "lists$x_lists.e"
task $gcursor = "lists$gcursor.cl"
task $imcursor = "lists$imcursor.cl"
task average = "lists$average.cl"
clbye()
.fi
2. List the currently defined packages in the order in which they will
be searched for tasks.
.nf
cl> pack
clpackage
language
user
system
.fi
.ih
BUGS
All active packages must have unique names. To eliminate the possibility
of parameter file name collisions in UPARM, the three character string
formed by concatenating the first two and final characters of the package
name should be unique.
.ih
SEE ALSO
task, redefine
.endhelp
|