-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathinfo.rkt
More file actions
19 lines (19 loc) · 739 Bytes
/
Copy pathinfo.rkt
File metadata and controls
19 lines (19 loc) · 739 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#lang info
(define collection "delay-pure")
(define deps '("base"
"rackunit-lib"
"typed-racket-lib"
"typed-racket-more"
"type-expander"
"phc-toolkit"
"version-case"))
(define build-deps '("scribble-lib"
"racket-doc"
"typed-racket-doc"))
(define scribblings '(("scribblings/delay-pure.scrbl" () ("typed-racket"))))
(define pkg-desc
(string-append "Non-cached promises for Typed/Racket, like delay/name."
" Should be sound for occurrence typing (unlike"
" delay/name) because only pure functions are allowed."))
(define version "1.0")
(define pkg-authors '(|Suzanne Soy|))