Re: [Chicken-users] qt egg hello world example broken

2010-07-07 Thread Felix
From: Martin DeMello martindeme...@gmail.com Subject: [Chicken-users] qt egg hello world example broken Date: Wed, 7 Jul 2010 02:21:50 +0530 The qt egg example on http://chicken.wiki.br/eggref/4/qt doesn't work out of the box - Qt seems to want classForm/class rather than [class] Form

Re: [Chicken-users] qt egg hello world example broken

2010-07-07 Thread Felix
From: Mario Domenech Goulart mario.goul...@gmail.com Subject: Re: [Chicken-users] qt egg hello world example broken Date: Tue, 06 Jul 2010 17:00:01 -0400 Hi Martin On Wed, 7 Jul 2010 02:21:50 +0530 Martin DeMello martindeme...@gmail.com wrote: The qt egg example on

Re: [Chicken-users] clueless about memory consumtion

2010-07-07 Thread Felix
From: Jörg F. Wittenberger joerg.wittenber...@softeyes.net Subject: [Chicken-users] clueless about memory consumtion Date: Mon, 05 Jul 2010 21:09:44 +0200 I have added a procedure for dumping the object-counts in the heap (see experimental branch), called `##sys#dump-heap-state'. You can

Re: [Chicken-users] qt egg hello world example broken

2010-07-07 Thread Mario Domenech Goulart
Hi Felix On Wed, 07 Jul 2010 14:27:10 +0200 (CEST) Felix fe...@call-with-current-continuation.org wrote: From: Mario Domenech Goulart mario.goul...@gmail.com Subject: Re: [Chicken-users] qt egg hello world example broken Date: Tue, 06 Jul 2010 17:00:01 -0400 Thanks for reporting this.

[Chicken-users] Creating new types and their representation in the REPL

2010-07-07 Thread Jack Trades
I'm sure this is a simple question but I can't quite figure it out. Is there a way to get (define-record ...) to print out something other than the tag of the record? Example of current behavior: (define-record point x y) (define p (make-point 5 10)) p === #point Example of desired behavior:

Re: [Chicken-users] Creating new types and their representation in the REPL

2010-07-07 Thread John Cowan
2010/7/7 Jack Trades jacktradespub...@gmail.com: I'm sure this is a simple question but I can't quite figure it out.  Is there a way to get (define-record ...) to print out something other than the tag of the record? You want define-record-printer, which is a macro taking two arguments, the

Re: [Chicken-users] Creating new types and their representation in the REPL

2010-07-07 Thread Jack Trades
On Wed, Jul 7, 2010 at 1:58 PM, Peter Bex peter@xs4all.nl wrote: Use define-record-printer: http://chicken.wiki.br/man/4/Non-standard%20macros%20and%20special%20forms#define-record-printer Cheers, Peter Thanks, I didn't know where the documentation for define-record was. That's one

Re: [Chicken-users] Creating new types and their representation in the REPL

2010-07-07 Thread Jim Ursetto
Just FYI, If you go to chickadee and start typing define-record, you will see define-record-printer in the search box. On Jul 7, 2010, at 17:27, Jack Trades jacktradespub...@gmail.com wrote: On Wed, Jul 7, 2010 at 1:58 PM, Peter Bex peter@xs4all.nl wrote: Use define-record-printer: