[racket] sustained network

2013-04-08 Thread deepak verma
how to get a sustained network using tcp over which we can send data and receive it using ports... Racket Users list: http://lists.racket-lang.org/users

Re: [racket] sustained network

2013-04-08 Thread Danny Yoo
An interesting example might be an echo-style server, where the server reads input and writes output forever. Here's what it can look like: --- #lang racket/base (provide start-server) (require racket/tcp) ;; start-server: #:port