repo.or.cz
/
jimtcl.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
docs: Remove docs for the case command
[jimtcl.git]
/
examples
/
unix.client
blob
12a5bf860ce3368c9b3ff5b69b131f7ba9db4c88
1
# Example of sending via a connected tcp socket
2
3
set s [socket unix unix.tmp]
4
5
foreach i [range 1 20] {
6
$s puts "expr {1 << $i}"
7
8
puts [$s gets]
9
}