crayon-syntax-highlighter/util/sample/scheme.txt
2019-08-30 19:30:19 +02:00

6 lines
177 B
Plaintext

(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
)