Skip to content

Instantly share code, notes, and snippets.

View daysgobye's full-sized avatar

cole smith daysgobye

View GitHub Profile
@daysgobye
daysgobye / debug_utils.lua
Created April 9, 2026 18:35
A simple table print I use for debugging in love 2d
local M = {}
local format = string.format
local rep = string.rep
local write = io.write
local colors = {
reset = "\27[0m",
number = "\27[31m",
table = "\27[32m",
string = "\27[33m",
boolean = "\27[34m",