crayon-syntax-highlighter/util/sample/scheme.txt

6 lines
177 B
Plaintext
Raw Normal View History

2019-08-30 19:30:19 +02:00
(define var "goose")
;; Any reference to var here will be bound to "goose"
(let* ((var1 10)
(var2 (+ var1 12)))
;; But the definition of var1 could not refer to var2
)