
marcorexo
2017-7-29 08:36:41
@soegaard2 thanks

marcorexo
2017-7-29 08:43:18
@soegaard2 pasted my code into paste http://rack.org\|rack.org. The url is: http://pasterack.org/pastes/72152. Thanks. Your feedback would be great.

ben
2017-7-29 21:18:28
hi, here’s a few comments: - (let (....) (define ....))
can be (define ....) (define ....)
, saves an indentation - (eq? b #f)
is the same as (not b)
- I’d use a helper function for the (number->string ....)
- I’d also put all the defines “within” the define for dialog, so overall structure is: (define dialog
(let ()
(define ....)
....))
(send dialog show #t)