TCL Development: Debugging Environment

I like a bit of hacking TiVo in my free time - TiVo uses a variant of Linux and TCL . I would like to write TCL scripts on my Windows laptop, test them, and then transfer them to my TiVo.

Can I get a recommendation for TCL debugging environment for Windows?

+3
source share
7 answers

Activestate's Komodo is a good environment for Windows / Linux. There is a trial version - I'm not sure if there is a free version after the trial version.

+4
source

, . ActiveState (http://www.activestate.com/Products/activetcl/index.mhtml) (C:/blahblah/tclsh myprog.tcl ) , .

, .

+2

wiki Tcl. , tkinspect ( wiki wiki), linux unix x tk-, . , ActiveTate "tcl dev kit" . - - .

+1
+1

ActiveState Tcl ( , ), . tcl-.

http://www.activestate.com/tcl_dev_kit/

0

Tcl ( ), . , "bp beforehairyfunction", tclsh.

proc bp {{s {}}} {
        if ![info exists ::bp_skip] {
           set ::bp_skip [list]
        } elseif {[lsearch -exact $::bp_skip $s]>=0} return
    if [catch {info level -1} who] {set who ::}
    while 1 {
        puts -nonewline "$who/$s> "; flush stdout
        gets stdin line
        if {$line=="c"} {puts "continuing.."; break}
        if {$line=="i"} {set line "info locals"}
        catch {uplevel 1 $line} res
        puts $res
    }
 }
0

Source: https://habr.com/ru/post/1696463/


All Articles