| Name binding, Recursion, Iteration, and Continuations - slide 11 : 42 |
| Expression | Value |
(body
(if (string=?
(weekday (current-time))
"Wednesday")
(p (em "Remember Thursday meeting!"))
'( ))
(h1 "Schedule")
(p "...")) |
Remember the Thursday meeting tomorrow! Schedule... |
(body
(p (if (string=?
(weekday (current-time))
"Wednesday")
(em "Remember Thursday meeting!")
'( )))
(h1 "Schedule")
(p "...")) |
Remember the Thursday meeting tomorrow! Schedule... |