Setting variables in declarative modules
Tommi Höynälänmaa <[email protected]>
| Newsgroups | gmane.lisp.guile.user |
|---|---|
| Message-ID | <CAAkPRiyFeUF8xcwr=58MoX-FGsMh7gvO_GLWndmTK3WqzT2tug@mail.gmail.com> |
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