declare block problem ? added by semarie on Wed May 20 19:34:14 2020

;;
;; $ csc -emit-all-import-libraries -shared foo.scm
;; $ csc -shared foo.import.scm
;; $ csi -e '(import foo) (my-function)'
;;
(module foo (my-function)
  (import scheme
          (chicken base)
          )
  
  #;(declare (block))

  (define (my-function)
    (display "hello\n"))
)