phc-graph/test/test-graph-low1.rkt
2017-04-27 02:02:56 +02:00

17 lines
447 B
Racket

#lang dotlambda/unhygienic type-expander/lang
(require (for-syntax (lib "phc-graph/main-draft.hl.rkt")))
(define-syntax low-graph low-graph-impl)
(low-graph
g
#:∀ (A)
(node City [streets : (Listof Street)])
(node Street [name : String] [a : A])
(mapping (make-city [names : (Listof (Pairof String A))])
: City
(City (map make-street names)))
(mapping (make-street [p : (Pairof String A)])
: Street
(Street (car p) (cdr p))))