You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It's impossible to get an upper-case character in on-key: after a
long time trying to figure out why my program wasn't working, I
finally added a field to the world to record the most recent
keystroke, and saw that, eg, "B" shows up as "shift" + "b". I believe
this is not consistent with DrRacket: eg, if I run
From sk:
long time trying to figure out why my program wasn't working, I
finally added a field to the world to record the most recent
keystroke, and saw that, eg, "B" shows up as "shift" + "b". I believe
this is not consistent with DrRacket: eg, if I run
(big-bang empty
[on-key (lambda (w k)
(cons k w))]
[to-draw (lambda (w) (empty-scene 100 100))]
[stop-when (lambda (w)
(> (length w) 10))])
I get (list "F" "D" "S" "A" "F" "D" "S" "A" "F" "D" "A") in DrRacket.
The text was updated successfully, but these errors were encountered: