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