You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
typesetting/pitfall/pitfall/struct.rkt

9 lines
297 B
Racket

7 years ago
#lang racket/base
7 years ago
(provide (all-defined-out))
(struct co-dict (dict) #:transparent)
(struct co-array (items) #:transparent)
(struct co-stream (dict data) #:transparent)
(struct co-version (num) #:transparent)
(struct co-io (obj gen thing) #:transparent)
(struct co-io-ref (obj gen) #:transparent)