diff options
author | Juan Manuel Tomás <jtomas1815@gmail.com> | 2022-12-17 03:48:05 -0300 |
---|---|---|
committer | Juan Manuel Tomás <jtomas1815@gmail.com> | 2022-12-17 03:48:05 -0300 |
commit | f3cc5d4cc7e722e44fe92e63a66983dfb012395c (patch) | |
tree | f189bb808b447088e1e7bfe80b44f5a4a4c4032e /package.lisp | |
parent | a484c32ae01c697f002e62d17f513155c1151d60 (diff) | |
download | monparser-f3cc5d4cc7e722e44fe92e63a66983dfb012395c.tar.gz monparser-f3cc5d4cc7e722e44fe92e63a66983dfb012395c.zip |
Add negate operator and polish literals
Diffstat (limited to 'package.lisp')
-rw-r--r-- | package.lisp | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/package.lisp b/package.lisp index 45e8266..50ce3df 100644 --- a/package.lisp +++ b/package.lisp @@ -7,13 +7,15 @@ (:use #:cl) (:export #:run #:fail - #:either + #:comp + #:one-of + #:all-of + #:negate + #:unit-if #:unit #:not-unit - #:unit-if #:literal - #:until-literal - #:comp + #:not-literal #:nothing #:optional #:many |