>>> import Prelude (Float) >>> import InfBackprop (call, derivative)
>>> call (-) (5, 3) :: Float 2.0
>>> import Debug.SimpleExpr.Expr (variable) >>> x = variable "x" >>> y = variable "y" >>> derivative (-) (x, y) (1,-(1))