Re: generalized-arrays egg, array-read fails on array written with array-write

2022-12-17 Thread Matt Welland
Hi Jeremy, Thanks for the response. This was with Chicken 5. I found generalized-arrays easy to understand and I like the api. Most of the other array eggs either had some limitation or were tough to understand how to use. However I think I'll be able to make srfi-63 work for now. If you ever get

Re: generalized-arrays egg, array-read fails on array written with array-write

2022-12-15 Thread Jeremy Steward
Hey Matt, author here: On 12/15/22 10:28, Matt Welland wrote: This seems like a bug (unless I'm missing something?): (module justtesting * (import scheme chicken.base generalized-arrays storage-classes) (define (testit)   (let* ((size (vector 100 100)) (ary  (make-array vector-stora

generalized-arrays egg, array-read fails on array written with array-write

2022-12-15 Thread Matt Welland
This seems like a bug (unless I'm missing something?): (module justtesting * (import scheme chicken.base generalized-arrays storage-classes) (define (testit) (let* ((size (vector 100 100)) (ary (make-array vector-storage-class size 0))) (with-output-to-file "testarray.dat" (