diallo.ms
2018-10-7 21:56:53

@diallo.ms has joined the channel


cawright.99
2018-10-8 04:38:41

I’m defining an object - is there a way to have multiple arguments to “define”? (define foo% (class object%) (define a 1 b 2 c 3) ...) or do I have to:

(define foo%
(class object%)
(define a 1)
(define b 2)
(define c 3)
...)

thanks!