summaryrefslogtreecommitdiffstats
path: root/tests/pkg/pkg4.tcl
blob: ccb92910ce0a6679a00559dde1a284e1f4c8bc2f (plain)
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
# pkg4.tcl --
#
#  Test package for pkg_mkIndex. This package requires pkg3, and it calls
#  a pkg3 proc in the code that is executed by the file
#
# Copyright (c) 1998 by Scriptics Corporation.
# All rights reserved.
# 
# RCS: @(#) $Id: pkg4.tcl,v 1.1 1998/10/17 00:21:42 escoffon Exp $

package require pkg3 1.0

package provide pkg4 1.0

namespace eval pkg4 {
    namespace export p4-1 p4-2
    variable m2 [pkg3::p3-1 10]
}

proc pkg4::p4-1 { num } {
    variable m2
    return [expr {$m2 * $num}]
}

proc pkg4::p4-2 { num } {
    return [pkg3::p3-2 $num]
}