From a32a757879a50938f1a8a916120097742058312a Mon Sep 17 00:00:00 2001 From: Doug Coleman Date: Fri, 17 Jun 2016 12:11:27 -0700 Subject: [PATCH] 24-game: fix using. --- games/24-game/24-game-tests.factor | 3 ++- games/24-game/24-game.factor | 5 ++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/games/24-game/24-game-tests.factor b/games/24-game/24-game-tests.factor index 9642d3ef39..f447d7060a 100644 --- a/games/24-game/24-game-tests.factor +++ b/games/24-game/24-game-tests.factor @@ -1,4 +1,5 @@ -USING: 24-game io.streams.string kernel math sequences tools.test ; +USING: 24-game io.streams.string kernel math sequences +tools.test ; in: 24-game.tests { t } [ make-24 first4 makes-24? ] unit-test diff --git a/games/24-game/24-game.factor b/games/24-game/24-game.factor index 515003da2b..9fda91dfe1 100644 --- a/games/24-game/24-game.factor +++ b/games/24-game/24-game.factor @@ -1,8 +1,7 @@ ! Copyright © 2008 Reginald Keith Ford II ! 24, the Factor game! -USING: accessors backtrack combinators continuations io kernel -math math.parser prettyprint quotations random sequences shuffle -; +USING: accessors backtrack combinators continuations formatting +io kernel math prettyprint quotations random sequences shuffle ; in: 24-game : nop ( -- ) ;