| Higher-order Functions - slide 30 : 34 |
| Expression | Value | ||||||||||||||||
(define rows
'(("This" "is" "first" "row")
("This" "is" "second" "row")
("This" "is" "third" "row")
("This" "is" "fourth" "row"))
)
(table 'border 5
(gmap
(compose tr (gmap td)) rows)) |
|