8 lines
116 B
Racket
8 lines
116 B
Racket
#lang typed-scheme
|
|
|
|
(: f (Integer -> Any))
|
|
(define (f x) (add1 x))
|
|
|
|
(lambda (#{x : String}) (string-append " " x))
|
|
|