delphimvcframework/samples/winecellarWITHDORM/Win32/Debug/Lua/html/form.lua
2013-11-11 01:05:03 +00:00

5 lines
120 B
Lua

html = {}
function html:input(type, value)
return string.format('<input type="%s" value="%s"/>', type, value)
end