|
|
|
|
|
by sjamaan
2781 days ago
|
|
This is an old example. This should now be something like (import (chicken format))
(define (test number1 number2)
(printf "Sum: ~s" (+ number1 number2)))
(test 1 2) If you're trying to actually use srfi-1, that's now imported via (import srfi-1). (use...) no longer exists. |
|