immediate mode visualization library inspired by iris and imgui
guide: guide.md
local jello = require("jello").init()
local demo = require("jello/demo")
jello.connect(demo)local jello = require("jello").init()
jello.connect(function()
jello.window { title = "hello jello!" } .with(function(window)
jello.text { text = "welcome" }
end)
end)