Ekaitz Zárraga 👹 on Nostr: Schemers! How do you write a record-type definition that you want to properly ...
Schemers! How do you write a record-type definition that you want to properly initialize?
(define-record-type <whatever>
(make-whatever ...)
...)
(define (make-and-init-whatever-properly ...)
...)
Do you rename the make-whatever procedure to something else and then make a make-whatever that actually does it's job? or what do you usually do for that?
(define-record-type <whatever>
(make-whatever ...)
...)
(define (make-and-init-whatever-properly ...)
...)
Do you rename the make-whatever procedure to something else and then make a make-whatever that actually does it's job? or what do you usually do for that?