factor/extra/tools/walker/walker.factor

7 lines
189 B
Factor
Raw Normal View History

2007-09-20 18:09:08 -04:00
! Copyright (C) 2007 Slava Pestov.
! See http://factorcode.org/license.txt for BSD license.
IN: tools.walker
2007-10-05 01:33:26 -04:00
USING: kernel sequences continuations ;
2007-09-20 18:09:08 -04:00
2007-10-05 01:33:26 -04:00
: walk ( quot -- ) \ break add* call ;