riscv-openocd-wch/jimtcl/examples/unix.client

10 lines
149 B
Plaintext

# Example of sending via a connected tcp socket
set s [socket unix unix.tmp]
foreach i [range 1 20] {
$s puts "expr {1 << $i}"
puts [$s gets]
}