From 4af58b61ab5d521d3510301a3332c2e377d5dda6 Mon Sep 17 00:00:00 2001 From: Richard Harrington Date: Tue, 6 Aug 2013 11:26:37 -0400 Subject: [PATCH] changed robot module dependencies from 'use' to 'require' --- src/robotwar/robot.clj | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/robotwar/robot.clj b/src/robotwar/robot.clj index aa9521f..823720a 100644 --- a/src/robotwar/robot.clj +++ b/src/robotwar/robot.clj @@ -1,6 +1,6 @@ (ns robotwar.robot - (:use [clojure.string :only [join]] - (robotwar brain game-lexicon))) + (:use [clojure.string :only [join]]) + (:require (robotwar brain game-lexicon))) (defn init-register "takes a reg-name and a robot-idx (needed to locate the register in the world),