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

5 lines
120 B
Lua
Raw Normal View History

2013-10-29 16:51:16 +01:00
html = {}
function html:input(type, value)
return string.format('<input type="%s" value="%s"/>', type, value)
end