chibi-scheme/tests/basic/test05-internal-define.scm
Alex Shinn d451a053ca changed type opcode generators to use type objects, not ids
also fixed support for float/double types
2010-09-17 01:47:21 +00:00

8 lines
92 B
Scheme

(let ((a 1000))
(define b (+ a 3))
(write a)
(display " ")
(write b)
(newline))