Re: Simple socket programming problem

2013-06-01 Thread Michael Wood
Hi On 1 June 2013 02:44, Andrew Spano wrote: > Hello, > > I'm trying to create a very simple interaction between a client and server > program using the server-socket library which used to be part of > clojure-contrib and is now maintained by technomancy > https://github.com/technomancy/server-s

Re: Simple socket programming problem

2013-05-31 Thread Andrew Spano
It works! Wow, that was a simple solution! Thanks for the help :D :D. On Friday, May 31, 2013 9:04:42 PM UTC-4, atkaaz wrote: > > What happens if you send a newline after that "Hello"? ie. "Hello\n" since > you're using read-line > > > > On Sat, Jun 1, 2013 at 3:44 AM, Andrew Spano > > wrote

Re: Simple socket programming problem

2013-05-31 Thread atkaaz
What happens if you send a newline after that "Hello"? ie. "Hello\n" since you're using read-line On Sat, Jun 1, 2013 at 3:44 AM, Andrew Spano wrote: > Hello, > > I'm trying to create a very simple interaction between a client and server > program using the server-socket library which used to