Testing: modify parse to just take a verb phrase

This was done to test the alternative parse-verb-phrase.
This commit is contained in:
Oliver Payne 2024-01-04 22:52:24 +00:00
parent ab12eb11cc
commit 789e726ea9
1 changed files with 1 additions and 1 deletions

View File

@ -23,7 +23,7 @@
(define (parse input)
(set! *unparsed* input)
(let ((sent (parse-sentence)))
(let ((sent (parse-verb-phrase 0)))
(require (null? *unparsed*))
sent))