delphimvcframework/samples/winecellarWITHDORM/Win32/Debug/Lua/html/form.lua

5 lines
120 B
Lua
Raw Normal View History

2013-11-11 02:05:03 +01:00
html = {}
function html:input(type, value)
return string.format('<input type="%s" value="%s"/>', type, value)
end