#!/usr/local/bin/gosh (use srfi-1) (print 10 (+ 5 3 4) (- 9 1) (/ 6 2) (+ (* 2 4) (- 4 6) ) (define a 3) (define b (+ a 1)) (+ a b (* a b)) )