Fix IN: in parser-combinators.simple

db4
Chris Double 2007-12-20 16:48:58 +13:00
parent 9a5335e718
commit 7817af0104
1 changed files with 2 additions and 2 deletions

View File

@ -1,8 +1,8 @@
! Copyright (C) 2006 Chris Double. ! Copyright (C) 2006 Chris Double.
! See http://factorcode.org/license.txt for BSD license. ! See http://factorcode.org/license.txt for BSD license.
USING: kernel strings math sequences lazy-lists words USING: kernel strings math sequences lazy-lists words
math.parser promises ; math.parser promises parser-combinators ;
IN: parser-combinators IN: parser-combinators.simple
: 'digit' ( -- parser ) : 'digit' ( -- parser )
[ digit? ] satisfy [ digit> ] <@ ; [ digit? ] satisfy [ digit> ] <@ ;