delphimvcframework/samples/winecellar/Win32/Debug/Lua/html/form.lua
2013-10-29 15:51:16 +00:00

5 lines
120 B
Lua

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