;; -*- scheme -*- (define a (+ 1 2)) (define b (* a 3)) (define print (lambda (x) (display x) (newline))) (print a) (print b) (print (+ a b))