; variables are defined with the "def" keyword  
(define x 4)
(define x (+ x 1))
(display "x = ")
(displayln x)

; variables can be defined in a specific block with the "let" construct
(let ([y 10])
  (display "y = ")
  (displayln y))
; y is no longer defined