summaryrefslogtreecommitdiff
path: root/tcl/tests/pkg/simple.tcl
diff options
context:
space:
mode:
Diffstat (limited to 'tcl/tests/pkg/simple.tcl')
-rw-r--r--tcl/tests/pkg/simple.tcl23
1 files changed, 23 insertions, 0 deletions
diff --git a/tcl/tests/pkg/simple.tcl b/tcl/tests/pkg/simple.tcl
new file mode 100644
index 00000000000..73f49e3ac49
--- /dev/null
+++ b/tcl/tests/pkg/simple.tcl
@@ -0,0 +1,23 @@
+# simple.tcl --
+#
+# Test package for pkg_mkIndex. This is a simple package, just to check
+# basic functionality.
+#
+# Copyright (c) 1998 by Scriptics Corporation.
+# All rights reserved.
+#
+# RCS: @(#) $Id$
+
+package provide simple 1.0
+
+namespace eval simple {
+ namespace export lower upper
+}
+
+proc simple::lower { stg } {
+ return [string tolower $stg]
+}
+
+proc simple::upper { stg } {
+ return [string toupper $stg]
+}