Keisuke Nishida <[EMAIL PROTECTED]> writes:

> The following code makes an error.  Is this a feature or a bug?
> 
> guile> (hash-fold acons () (make-vector 5))

It's a bug in the above expression.  (make-vector 5) makes a vector
with #<unspecified> as elements.  This is not a hash table.

Instead, try

  (hash-fold acons '() (make-vector 5 '()))

Best regards,
/mdj

Reply via email to