From 7ac1963416c142d8d11fa6fd77162fa19fd9dff3 Mon Sep 17 00:00:00 2001 From: John Benediktsson Date: Wed, 19 Oct 2011 09:40:51 -0700 Subject: [PATCH] benchmark.splay: fix IN:. --- extra/benchmark/splay/splay.factor | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/extra/benchmark/splay/splay.factor b/extra/benchmark/splay/splay.factor index 56364cd9fe..f91c4c5fba 100644 --- a/extra/benchmark/splay/splay.factor +++ b/extra/benchmark/splay/splay.factor @@ -1,8 +1,10 @@ +! Copyright (C) 2011 John Benediktsson +! See http://factorcode.org/license.txt for BSD license USING: arrays assocs kernel math.ranges random sequences sets sorting trees.splay ; -IN: splay +IN: benchmark.splay : initial-alist ( n -- alist ) iota >array randomize dup zip ;