[Home] / Developer Tools

[NPM] [Atom Packages]

Love2D Libraries

I've developed some libraries that can be used to create Love2D games.

Love2D Atom Tools



I've developed a set of packages that improves the experience of editing Love2D games in Atom.

More Tools

;; Increment and Decrement Macros
(defmacro ++ (x)
  (list 'set x (list '+ x 1)))
(defmacro -- (x)
  (list 'set x (list '- x 1)))
  • dumblisp - A lisp interpreter with macros and lexical scoping.
  • ups - A tool to create and apply binary patch files.
  • got - A version control system written in Go.