Megatest

client.scm at [4e3d7aed7d]
Login

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


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

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

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