Folks,
I downloaded the pre-built b9 binaries for Mac OSX. I start up the interpreter and do the following:
(define-structure point x y) (define p (make-point 3 5))
The second statement does not work as make-point is not defined. what gets defined is actually "point" so what works is
(define p (point 3 5))
I took the example straight from the b9 docs, though. What's happening?
Thanks, Joel