On 2012-06-07, at 12:31 PM, Steve Graham wrote:
I got some errors when I tried to compile a file:
root@mepis1:/opt/gambit# cat test.scm (define (block))
(define (f x) (+ (* x x) (- x 1)))
(define (g y) (f (f y)))
(pp 123)
root@mepis1:/opt/gambit# gsc test.scm *** ERROR IN "/opt/gambit/test.scm"@1.1 -- Ill-formed special form: define root@mepis1:/opt/gambit# gsc -e '(set! c#targ-tree-shake? #t)' test.scm *** ERROR IN (string)@1.1 -- Unbound variable: c#targ-tree-shake?
Any ideas?
Thanks, Steve
From reading a more recent message of yours, I guess you have discovered that your first line should have been
(declare (block))
Marc