factor/extra/lisp/lisp.factor

8 lines
208 B
Factor
Raw Normal View History

2008-04-17 02:37:03 -04:00
! Copyright (C) 2008 James Cash
! See http://factorcode.org/license.txt for BSD license.
2008-04-17 12:37:31 -04:00
USING: kernel peg.ebnf peg.expr ;
IN: lisp
2008-04-17 02:37:03 -04:00
2008-04-17 12:37:31 -04:00
EBNF: expr
list = "(" ( atom | list )* ")" => [[ second 1array ]]
;EBNF