]> gitweb.factorcode.org Git - factor.git/blobdiff - basis/combinators/random/random.factor
factor: trim using lists
[factor.git] / basis / combinators / random / random.factor
index 9363ede491f55c521b8f12a550bef2f03dd04420..ba057b055ef698eb31f0fcbfec5b7b4feb4ca101 100644 (file)
@@ -1,8 +1,7 @@
 ! Copyright (C) 2010 Jon Harper.
 ! See http://factorcode.org/license.txt for BSD license.
 USING: arrays assocs combinators combinators.short-circuit
-kernel macros math math.order quotations random sequences
-summary ;
+kernel math math.order quotations random sequences summary ;
 IN: combinators.random
 
 : ifp ( p true false -- ) [ random-unit > ] 2dip if ; inline