2 minutes, 36 seconds | Higher-order Functions - slide 31 : 34 |
Expression | Value | ||||||||||||||||
(define td1 (modify-element td 'bgcolor (rgb-color-list red) 'width 50)) (table 'border 5 (map (compose tr (gmap td1)) rows)) |
| ||||||||||||||||
(define ol1 (modify-element ol 'type "A")) (ol1 (map (compose li as-string) (number-interval 1 10))) |
| ||||||||||||||||
(define ul1 (modify-element ul 'type "square")) (ul1 (map (compose li as-string) (number-interval 1 10))) |
|