Suppose that I have the following code in a Guile module:
---
(define fw-proc #f)

(define (my-proc x)
    (display (fw-proc x)))

(define (fw-proc x)
    (cons x x))
---

Can I declare the module as declarative?

     - Tommi Höynälänmaa

Reply via email to