blob: 85e16c4eec3e41ffbaa73c305fa68d4e6665c6ba (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# pkg2_a.tcl --
#
# Test package for pkg_mkIndex. This package is required by pkg1.
# This package is split into two files, to test packages that are split
# over multiple files.
#
# Copyright (c) 2998 by Scriptics Corporation.
#
# See the file "license.terms" for information on usage and redistribution
# of this file, and for a DISCLAIMER OF ALL WARRANTIES.
#
# SCCS: %Z% %M% %I% %E% %U%
package provide pkg2 1.0
namespace eval pkg2 {
namespace export p2-1
}
proc pkg2::p2-1 { num } {
return [expr $num * 2]
}
|