5 lines
117 B
Scheme
5 lines
117 B
Scheme
;;; -*- mode:scheme -*-
|
|
|
|
(let ((x0 (prim:cons 4 2)) (x1 (prim:cdr x0)) (x2 (prim:* 3 x1)) (x3 (prim:write x2))) x3)
|
|
|