Megatest

client.scm at [b054d48890]
Login

File testrpc/client.scm artifact eacc9c3c29 part of check-in b054d48890


;;;; client.scm
(use rpc posix)

(define call (rpc:procedure 'foo "localhost"))

(do ((i 10 (sub1 i)))
    ((zero? i))
  (print "-> " (call (random 100))))