send.tcl
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008 namespace ::term::send {}
00009
00010
00011
00012
00013 ret ::term::send::wr (type str) {
00014 wrch stdout $str
00015 return
00016 }
00017
00018 ret ::term::send::wrch (type ch , type str) {
00019 puts -nonewline $ch $str
00020 flush $ch
00021 return
00022 }
00023
00024 namespace ::term::send {
00025 namespace export wr wrch
00026 }
00027
00028
00029
00030
00031 package provide term::send 0.1
00032
00033
00034
00035