Mark H Weaver writes:
> Nala Ginrut writes:
>> Here is a CSV reader based on Andy's csv-reader.
>> And it's ready for guildhall.
> [...]
>> PS: I'll call ijp to add it into the repo.
>
> I haven't yet looked carefully at this code or its API, so this is no
> judgement on you, but in general, I d
On Fri, 2013-02-08 at 08:59 -0800, Aleix Conchillo Flaqué wrote:
> On Fri, Feb 8, 2013 at 8:13 AM, Mark H Weaver wrote:
> >
> > I haven't yet looked carefully at this code or its API, so this is no
> > judgement on you, but in general, I don't think we should follow the
> > model of "Hey, here's t
On Fri, 2013-02-08 at 11:13 -0500, Mark H Weaver wrote:
> Nala Ginrut writes:
> > Here is a CSV reader based on Andy's csv-reader.
> > And it's ready for guildhall.
> [...]
> > PS: I'll call ijp to add it into the repo.
>
> I haven't yet looked carefully at this code or its API, so this is no
> j
On Fri, Feb 8, 2013 at 8:13 AM, Mark H Weaver wrote:
>
> I haven't yet looked carefully at this code or its API, so this is no
> judgement on you, but in general, I don't think we should follow the
> model of "Hey, here's the first release of a library I just hacked up.
> Please add it to Guildhal
This has been said before, but I think the most important thing is for
people who are new to Guile to be able to see a list of "mature,
well-maintained" libraries (whatever that means), and tell the difference
between those and poorly-maintained or bitrotted libraries.
It would also be nice to hav
Mark H Weaver skribis:
> I haven't yet looked carefully at this code or its API, so this is no
> judgement on you, but in general, I don't think we should follow the
> model of "Hey, here's the first release of a library I just hacked up.
> Please add it to Guildhall now." That's how we ended up
Nala Ginrut writes:
> Here is a CSV reader based on Andy's csv-reader.
> And it's ready for guildhall.
[...]
> PS: I'll call ijp to add it into the repo.
I haven't yet looked carefully at this code or its API, so this is no
judgement on you, but in general, I don't think we should follow the
mode
hi folks!
Here is a CSV reader based on Andy's csv-reader.
And it's ready for guildhall.
https://github.com/NalaGinrut/guile-csv
--code-
(use-modules (csv))
(define my-csv-reader (make-csv-reader #:\,))
(call-with-input-file "file.csv" my-csv-reader)
--end-