phc-graph/binarytree.hl.rkt

12 lines
256 B
Racket

#lang type-expander
(provide BinaryTree)
(require (for-syntax syntax/parse
phc-toolkit/aliases))
(define-type-expander BinaryTree
(syntax-parser
[(_ leafⱼ )
;; TODO: implement BinaryTree.
#'(List leafⱼ )]))