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------------------ You may specify the delimiter to generate a reader. PS: I'll call ijp to add it into the repo.