File: testserver.tcl

package info (click to toggle)
tcl-xmlrpc 0.3-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, buster
  • size: 212 kB
  • sloc: tcl: 2,385; makefile: 6
file content (10 lines) | stat: -rwxr-xr-x 127 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
#!/usr/bin/env tclsh
package require xmlrpc

xmlrpc::serve 5555

proc test {a b} {
	return [list string $a$b]
}

vwait forever