slag-plt / scamper

A mini-Scheme implementation designed for teaching, targeting the web
0 stars 0 forks source link

Define can shadow top-level definitions #21

Closed psosera closed 11 months ago

psosera commented 11 months ago
(define x 5)
(define x 10) ; should be a error: x is already defined globally
(display x)