Software /
code /
verse
File
libs/encodings.lua @ 125:b46921de1e03
verse: Add verse.log() to log a message using the default logger. Also add verse.set_error_handler() to, er, set an error handler.
author | Matthew Wild <mwild1@gmail.com> |
---|---|
date | Mon, 13 Sep 2010 14:07:41 +0100 |
parent | 107:59c6f2deb8ab |
child | 130:5de7f66e4168 |
line wrap: on
line source
local function not_impl() error("Encoding function not implemented"); end module "encodings" stringprep = {}; base64 = { encode = not_impl, decode = not_impl }; return _M;