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.
11 lines
315 B
Racket
11 lines
315 B
Racket
3 years ago
|
#lang racket/base
|
||
|
|
||
3 years ago
|
(require yaragg/examples/codepoints
|
||
3 years ago
|
rackunit)
|
||
|
|
||
3 years ago
|
(check-equal? (parse-to-datum '("\"A\\" "'c\\" "*d\\\"\\ef\"" "hello world"))
|
||
3 years ago
|
'(start (A "\"A\\")
|
||
|
(c "'c\\")
|
||
3 years ago
|
(def "*d\\\"\\ef\"")
|
||
3 years ago
|
(hello-world "hello world")))
|