Skip to content

Instantly share code, notes, and snippets.

View raingloom's full-sized avatar

Use a better git forge raingloom

View GitHub Profile
@raingloom
raingloom / ProFi.lua
Last active August 29, 2015 14:25 — forked from perky/ProFi.lua
ProFi, a simple lua profiler that works with LuaJIT and prints a pretty report file in columns.
--[[
ProFi v1.3, by Luke Perkin 2012. MIT Licence http://www.opensource.org/licenses/mit-license.php.
Example:
ProFi = require 'ProFi'
ProFi:start()
some_function()
another_function()
coroutine.resume( some_coroutine )
ProFi:stop()