8 lines
196 B
Racket
8 lines
196 B
Racket
#lang racket/load
|
|
|
|
(module m typed/racket/base
|
|
(provide (struct-out container))
|
|
(struct: container ([value : Any])))
|
|
|
|
(require 'm racket/base)
|
|
(container-value (container (hasheq 'foo "foo"))) |