7 lines
158 B
Racket
7 lines
158 B
Racket
#lang web-server
|
|
(require racket/serialize
|
|
rackunit)
|
|
|
|
(check-true (serializable? (λ (x) x)))
|
|
(check-true (serializable? (first (list (λ (x) x)))))
|