Re: [racket-users] Re: Debug help with Unix Write

2016-02-15 Thread Ryan Culpepper
On 02/12/2016 07:33 PM, Ty Coghlan wrote: Both of you were correct, I had to flush my output and newline terminate it. The final result looks like: (define (broadcast source destination type message port) (let ([h (hash 'source source 'dest destination 'type type 'message me

[racket-users] Re: Debug help with Unix Write

2016-02-12 Thread Ty Coghlan
Both of you were correct, I had to flush my output and newline terminate it. The final result looks like: (define (broadcast source destination type message port) (let ([h (hash 'source source 'dest destination 'type type 'message message)]) (fprintf port "~a\n" (jsexpr->st