3  Variables and Binding

Variables allow us to store and reuse values. We will implement lexically-scoped variables using the let expression and manage local environments in our interpreter.

# Scope and Environment management for HULK