5 lines
82 B
Racket
5 lines
82 B
Racket
|
|
#lang racket/base
|
||
|
|
(define (add f g x)
|
||
|
|
(+ (f x) (g x)))
|
||
|
|
(add sin cos 10)
|