Start a typed section in utils.
This commit is contained in:
parent
e3e50c99ea
commit
33ddd747c3
1 changed files with 15 additions and 0 deletions
15
utils.rkt
15
utils.rkt
|
@ -8,6 +8,21 @@
|
|||
graph
|
||||
(for-syntax syntax/parse racket/list))
|
||||
|
||||
;;; Typed section.
|
||||
|
||||
(module typed typed/racket
|
||||
(require typed/graph
|
||||
(for-syntax syntax/parse racket/list))
|
||||
(provide (all-defined-out))
|
||||
|
||||
(define a 1))
|
||||
|
||||
(require 'typed)
|
||||
|
||||
(displayln a)
|
||||
|
||||
;;; Untyped section.
|
||||
|
||||
(provide
|
||||
;; Functions
|
||||
(contract-out [eval-with (-> variable-mapping? any/c any)]
|
||||
|
|
Loading…
Reference in a new issue