Skip to content

Instantly share code, notes, and snippets.

@hortega
hortega / bot.clj
Created June 25, 2013 16:11 — forked from cgrand/bot.clj
;; * paste your code
;; * add a comment at the top telling which function to call
@hortega
hortega / bot.clj
Last active December 18, 2015 23:09 — forked from cgrand/bot.clj
(defn right [[x y]]
{2 [(inc x) y]})
(defn left [[x y]]
{4 [(dec x) y]})
(defn down [[x y]]
{3 [x (inc y)]})