Sha256: 3c09e118e859f1fd1782bf31553856618cbb0e0cd5f952829199d13e8ca1ea68
Contents?: true
Size: 415 Bytes
Versions: 3
Compression:
Stored size: 415 Bytes
Contents
-- Rad's Library of awesome Lua functions to complement the awesome Corona SDK local M = {} local ioExt = require "io_ext" M.io = ioExt local stringExt = require "string_ext" M.string = stringExt local tableExt = require "table_ext" M.table = tableExt local timeExt = require "time_ext" M.time = timeExt local debug = function( msg ) native.showAlert("DEBUG", msg, {"OK"}) end M.debug = debug return M
Version data entries
3 entries across 3 versions & 1 rubygems