Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Add log function |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | lisp-game-jam-2020 |
Files: | files | file ages | folders |
SHA3-256: |
854a3dce1a224e588716cdfe4b34b750 |
User & Date: | chewbranca 2020-04-11 22:25:04 |
Context
2020-04-11
| ||
22:26 | Add Fennel port of http://www.osmstudios.com/tutorials/love2d-platformer-tutorial-part-1-the-basics check-in: a607a0e86f user: chewbranca tags: lisp-game-jam-2020 | |
22:25 | Add log function check-in: 854a3dce1a user: chewbranca tags: lisp-game-jam-2020 | |
22:24 | Update game width and height check-in: 8bf3ecc3e8 user: chewbranca tags: lisp-game-jam-2020 | |
Changes
Changes to src/fahombo/main.lua.
1 2 3 4 5 6 7 |
-- bootstrap the compiler fennel = require("lib.fennel") table.insert(package.loaders, fennel.make_searcher({correlate=true})) pp = function(x) print(require("lib.fennelview")(x)) end lume = require("lib.lume") require("wrap") |
> |
1 2 3 4 5 6 7 8 |
-- bootstrap the compiler
fennel = require("lib.fennel")
table.insert(package.loaders, fennel.make_searcher({correlate=true}))
pp = function(x) print(require("lib.fennelview")(x)) end
lume = require("lib.lume")
log = function(...) print(string.format(...)) end
require("wrap")
|