Megatest

client.scm at [7e8ac71fc6]
Login

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


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

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

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