Init fennel setup

This commit is contained in:
Travis Shears 2025-07-05 13:16:01 +02:00
parent 9575795f2b
commit 8cc7a39d5a
6 changed files with 6817 additions and 1 deletions

11
fennel_bootstrap.lua Normal file
View file

@ -0,0 +1,11 @@
fennel = require("fennel")
debug.traceback = fennel.traceback
table.insert(package.loaders, function(filename)
if love.filesystem.getInfo(filename) then
return function(...)
return fennel.eval(love.filesystem.read(filename), {env=_G, filename=filename}, ...), filename
end
end
end)
-- jump into Fennel
require("main.fnl")