Slide 11
Slide 11 text
A hypothetical example GUI API
(let [address
(get-postal-address-of :santa)]
(button :text "Send to santa"
:onclick
(fn [event widget]
(send-mail-to address))]))
1
2
3
4
5
6
Function in line 5 has access to address, but only takes
event and widget as arguments.
Friday, October 11, 13