I was trying to follow how to do scheme and sicp from Which lang packet is proper for SICP in Dr.Racket?
but when I run code in the accepted answer
#lang sicp
(paint-highres (below (beside diagonal-shading
(rotate90 diagonal-shading))
(beside (rotate270 diagonal-shading)
(rotate180 diagonal-shading))))
I get error
paint-hires: unbound identifier in: paint-hires
I have installed the sicp package. Anyone know what the problem is?

paint-hi-res/paint-hiresis now simplypaint. I also looked atsicp-langimplementation and the current one doesn't havepaint-hi-res, so I think the docs is simply outdated. - Sorawee Porncharoenwasepaint: unbound identifier in: paint- Harry Moreno(#%require sicp-pict)or(require sicp-pict)(depending on what language you are using). - Sorawee Porncharoenwase