self-referential recursion in "unknown" for command "::namespace"
    while executing
"::namespace current"
    ("uplevel" body line 1)
    invoked from within
"uplevel 1 {::namespace current}"
    (autoloading "::namespace")
    (procedure "::unknown" line 22)
    invoked from within
"::namespace current"
    ("uplevel" body line 1)
    invoked from within
"uplevel 1 {::namespace current}"
    (autoloading "namespace")
    (procedure "::unknown" line 22)
    invoked from within
"namespace eval ::request $script"
    ("::try" body line 12)

OUTPUT BUFFER:

# -*- tcl -*- # ### ### ### ######### ######### ######### ## Terminal packages - Generic sender operations # ### ### ### ######### ######### ######### ## Requirements namespace eval ::term::send {} # ### ### ### ######### ######### ######### ## API. Write to channel, or default (stdout) proc ::term::send::wr {str} { wrch stdout $str return } proc ::term::send::wrch {ch str} { puts -nonewline $ch $str flush $ch return } namespace eval ::term::send { namespace export wr wrch } # ### ### ### ######### ######### ######### ## Ready package provide term::send 0.1 ## # ### ### ### ######### ######### #########