From 0c39ed30e1ad70e8bbec58ba6ea534c9887b308e Mon Sep 17 00:00:00 2001 From: Slava Pestov Date: Sun, 15 Mar 2009 23:25:36 -0500 Subject: [PATCH] Fix benchmark table output --- extra/benchmark/benchmark.factor | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/extra/benchmark/benchmark.factor b/extra/benchmark/benchmark.factor index 9afd211876..489dc5e73f 100755 --- a/extra/benchmark/benchmark.factor +++ b/extra/benchmark/benchmark.factor @@ -24,10 +24,10 @@ IN: benchmark [ [ [ [ 1array $vocab-link ] with-cell ] - [ [ 1000000 /f pprint-cell ] [ "failed" write ] if* ] bi* + [ [ 1000000 /f pprint-cell ] [ [ "failed" write ] with-cell ] if* ] bi* ] with-row ] assoc-each - ] tabular-output ; + ] tabular-output nl ; : benchmarks ( -- ) run-benchmarks benchmarks. ;