home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / tcltk805.zip / tcl805s.zip / tcl8.0.5 / os2 / pkg / simple.tcl < prev    next >
Text File  |  1998-10-17  |  477b  |  24 lines

  1. # simple.tcl --
  2. #
  3. #  Test package for pkg_mkIndex. This is a simple package, just to check
  4. #  basic functionality.
  5. #
  6. # Copyright (c) 1998 by Scriptics Corporation.
  7. # All rights reserved.
  8. # RCS: @(#) $Id: simple.tcl,v 1.1 1998/10/17 00:21:43 escoffon Exp $
  9.  
  10. package provide simple 1.0
  11.  
  12. namespace eval simple {
  13.     namespace export lower upper
  14. }
  15.  
  16. proc simple::lower { stg } {
  17.     return [string tolower $stg]
  18. }
  19.  
  20. proc simple::upper { stg } {
  21.     return [string toupper $stg]
  22. }
  23.