Skip to content

Commit a2de75f

Browse files
committed
Fixes top level Clojure file to create MyBot.class
Signed-off-by: Tom Marble <[email protected]>
1 parent 47ea634 commit a2de75f

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

starter_kits/Clojure/hlt/app/halite3/mybot.clj renamed to starter_kits/Clojure/hlt/app/MyBot.clj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
(ns halite3.mybot
1+
(ns MyBot
22
(:require [hlt.log :refer [log]]
33
[hlt.random :refer [set-seed! rrand-int]]
44
[hlt.input :refer [as-int]]

starter_kits/Clojure/make-zip

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11

2-
FILES := project.clj ./hlt/lib/hlt/*.clj ./hlt/app/halite3/mybot.clj
2+
FILES := project.clj ./hlt/lib/hlt/*.clj ./hlt/app/MyBot.clj
33

44
all: mybot.zip
55

starter_kits/Clojure/project.clj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@
33
[com.taoensso/timbre "4.10.0"]
44
[org.clojure/data.json "0.2.6"]]
55
:source-paths ["hlt/lib" "hlt/app"]
6-
:main halite3.mybot
7-
:aot [halite3.mybot]
6+
:main MyBot
7+
:aot [MyBot]
88
:uberjar-name "MyBot.jar")

0 commit comments

Comments
 (0)