Forgot to add fry to USING: list in sequences.lib

db4
Slava Pestov 2008-12-02 02:45:53 -06:00
parent 86d389c903
commit 90a50c73ed
1 changed files with 1 additions and 1 deletions

View File

@ -5,7 +5,7 @@ USING: combinators.lib kernel sequences math namespaces make
assocs random sequences.private shuffle math.functions arrays
math.parser math.private sorting strings ascii macros assocs.lib
quotations hashtables math.order locals generalizations
math.ranges random ;
math.ranges random fry ;
IN: sequences.lib
: each-withn ( seq quot n -- ) nwith each ; inline