Re: [racket-users] Problems with 'provide'

2015-12-23 Thread Robby Findler
Is it possible you have two util.rkt files and you are in the wrong directory? Robby On Wednesday, December 23, 2015, David Storrs wrote: > Hi folks, > > I have a file, "util.rkt", the complete text of which is: > > == QUOTE > #lang racket > > (require racket/pretty) > > (define (print-pret

[racket-users] Problems with 'provide'

2015-12-23 Thread David Storrs
Hi folks, I have a file, "util.rkt", the complete text of which is: == QUOTE #lang racket (require racket/pretty) (define (print-prettier s) (parameterize ([pretty-print-columns 1]) (pretty-print s))) (define (hash-key-is? h k v) (and (hash-has-key? h k) (equal?