-
Notifications
You must be signed in to change notification settings - Fork 3.7k
Closed
Labels
Description
The highlighting of the Scheme function
(define add-point (lambda [p1 p2] (make-point (+ (point-x p1) (point-x p2)) (+ (point-y p1) (point-y p2)))))
using the following HTML document
`
Code example
(define add-point
(lambda [p1 p2]
(make-point
(+ (point-x p1) (point-x p2))
(+ (point-y p1) (point-y p2)))))