Artifact eacc9c3c29648e6b697ebd5abded9323c0729576:
- File testrpc/client.scm — part of check-in [7e8ac71fc6] at 2014-03-04 23:58:40 on branch multi-transport — not working but a good time to snapshot (user: matt, size: 156) [annotate] [blame] [check-ins using] [more...]
;;;; client.scm (use rpc posix) (define call (rpc:procedure 'foo "localhost")) (do ((i 10 (sub1 i))) ((zero? i)) (print "-> " (call (random 100))))