I am trying to use srfi-1 in guile. I used the following code to include the srfi:
(use-modules (srfi srfi-1))
However, I get an error saying that srfi is probably undefined. How should I used srfi?
I tried googling this problem, but it seems that I am the first person with this problem.