slag-plt / scamper

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

Stepper displaying many extra steps for some list defines #55

Closed eric-autry closed 1 year ago

eric-autry commented 1 year ago

For example, stepping through the following define takes 6 steps: (define lst (list (pair 0 0) (pair 0 1) (pair 1 0) (pair 1 1)))

Not a major problem, but can get cumbersome/distracting for long lists or lists that contain a lot of strings,

I think it mainly happens when there are pairs or lists inside of the list being defined.

psosera commented 1 year ago

Fixed with #34