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.
12 lines
404 B
Racket
12 lines
404 B
Racket
#lang racket/base
|
|
(require yaragg/examples/cutter-another
|
|
yaragg/support
|
|
rackunit)
|
|
|
|
(check-equal? (parse-tree "w") '(top (w)))
|
|
(check-equal? (parse-tree "x") '(top (x)))
|
|
(check-equal? (parse-tree "yy") '(top (y)))
|
|
(check-equal? (parse-tree "z") '(top (z)))
|
|
(check-equal? (parse-tree "a") '(top (a)))
|
|
(check-equal? (parse-tree "bb") '(top (b)))
|
|
(check-equal? (parse-tree "c") '(top (c))) |