3 lines
69 B
Racket
3 lines
69 B
Racket
|
|
(define (euler F h)
|
||
|
|
(λ (x y) (list (+ x h) (+ y (* h (F x y))))))
|