delphimvcframework/samples/serversideviews_lua/bin/Lua/lib/html.lua

5 lines
116 B
Lua

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