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