TR test for racket/function

This commit is contained in:
Asumu Takikawa 2011-06-22 14:30:01 -04:00
parent 05a5c16231
commit cee2509476

View File

@ -0,0 +1,10 @@
#lang typed/racket
;; Test imports from racket/function
(identity 5)
(identity (lambda (x) "test"))
((const 'foo) 1 2 3)
((curry (lambda (x y) (cons x y)) 5) '())