6 lines
76 B
Racket
6 lines
76 B
Racket
#lang racket
|
|
|
|
(define ((curried+ a) b)
|
|
(+ a b))
|
|
|
|
((curried+ 3) 2) ; => 5
|