[Chicken-users] unbound variable: make-hash-table

2010-07-09 Thread Martin DeMello
What's going wrong here? $ cat t.scm (define *hash* (make-hash-table)) $ csi t.scm ; loading t.scm ... #;1 *hash* #hash-table (0) $ csc t.scm $ ./t Error: unbound variable: make-hash-table Call history: t.scm:1: make-hash-table-- $ csc -version

Re: [Chicken-users] unbound variable: make-hash-table

2010-07-09 Thread Mario Domenech Goulart
Hi Martin On Fri, 9 Jul 2010 22:14:09 +0530 Martin DeMello martindeme...@gmail.com wrote: What's going wrong here? $ cat t.scm (define *hash* (make-hash-table)) $ csi t.scm ; loading t.scm ... #;1 *hash* #hash-table (0) $ csc t.scm $ ./t Error: unbound variable: make-hash-table

Re: [Chicken-users] unbound variable: make-hash-table

2010-07-09 Thread Jim Ursetto
(use srfi-69) On Jul 9, 2010, at 11:44, Martin DeMello martindeme...@gmail.com wrote: What's going wrong here? $ cat t.scm (define *hash* (make-hash-table)) $ csi t.scm ; loading t.scm ... #;1 *hash* #hash-table (0) $ csc t.scm $ ./t Error: unbound variable: make-hash-table

Re: [Chicken-users] unbound variable: make-hash-table

2010-07-09 Thread Jim Ursetto
Martin, feel free to join us on freenode on #chicken as well, we can answer all kinds of questions there. On Jul 9, 2010, at 12:04, Mario Domenech Goulart mario.goul...@gmail.com wrote: Hi Martin On Fri, 9 Jul 2010 22:14:09 +0530 Martin DeMello martindeme...@gmail.com wrote: What's

Re: [Chicken-users] unbound variable: make-hash-table

2010-07-09 Thread Martin DeMello
Thanks, Jim and Mario! And thanks for the pointer to the IRC channel, will drop by if I have any more questions. martin On Fri, Jul 9, 2010 at 11:13 PM, Jim Ursetto zbignie...@gmail.com wrote: Martin, feel free to join us on freenode on #chicken as well, we can answer all kinds of questions