9 lines
105 B
Racket
9 lines
105 B
Racket
#;
|
|
(exn-pred #rx"expected: Integer")
|
|
|
|
#lang typed/racket
|
|
|
|
(for/sum ([k (in-naturals)])
|
|
(/ 1 (* k k)))
|
|
|