[racket] (no subject)

From: deepak verma (deepakverma14021994 at gmail.com)
Date: Mon Apr 1 11:09:23 EDT 2013

for the following code :

(define e (make-evaluator 'racket/base))
(let-values ([(i o) (tcp-accept (tcp-listen 9999))])
  (parameterize ([current-input-port  i]
                 [current-output-port o]
                 [current-error-port  o]
                 [current-eval e])
    (read-eval-print-loop)
    (fprintf o "\nBye...\n")
    (close-output-port o)))

how will i get output through tcp-connect on another machine
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.racket-lang.org/users/archive/attachments/20130401/03ab48ab/attachment.html>

Posted on the users mailing list.