3 lines
95 B
Racket
3 lines
95 B
Racket
#lang racket
|
|
(define functions (for/list ([i 10]) (λ() (* i i))))
|
|
(map (λ(f) (f)) functions)
|