diff --git a/README b/README index 3d4954e..bb1a3cd 100644 --- a/README +++ b/README @@ -1,4 +1,14 @@ guile-csv ========= -Guile csv reader \ No newline at end of file +Guile csv reader + +* usage: +./configure && make +sudo make install + +(use-modules (csv)) +(define my-csv-reader (make-csv-reader #:\,)) +(call-with-input-file "file.csv" my-csv-reader) + +Enjoy!