home *** CD-ROM | disk | FTP | other *** search
/ PC World 2000 December / PCWorld_2000-12_cd.bin / Komunikace / Comanche / libplugin / stack.tcl < prev    next >
Text File  |  2000-11-02  |  269b  |  13 lines

  1. class stack {
  2.     variable list {}
  3.     method push { element } {lappend list $element}
  4.     method pop {} {
  5.         set tmp [lindex $list end]
  6.         set list [lreplace $list end end]
  7.         return $tmp
  8.     }
  9.     method clear {} { set list {} }
  10. }
  11.  
  12.       
  13.