about summary refs log tree commit diff stats
path: root/a.lam
blob: f85ee252d22e78a13a3e3decd8e313adc07bcffb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
;; -*- scheme -*-

(define a (+ 1 2))
(define b (* a 3))

(define print
  (lambda (x)
    (display x)
    (newline)))

(print a)
(print b)
(print (+ a b))