Variable references

{variable} syntax
An expression consisting of a variable (section 3.1) is a variable reference. The value of the variable reference is the value stored in the location to which the variable is bound. It is an error to reference an unbound variable.
(define x 28) x ==> 28

husk-scheme online documentation rev 3.2 (2021.03.04)