mirror of
https://github.com/danieleteti/delphimvcframework.git
synced 2024-11-17 16:55:54 +01:00
8 lines
185 B
Lua
8 lines
185 B
Lua
|
--[[
|
||
|
Here you cannot use eLua syntax byt plain Lua.
|
||
|
To generate text, use the _out function
|
||
|
]]
|
||
|
for i = 1,3 do
|
||
|
_out('<h'..i..'>This is and header</h'..i..'>');
|
||
|
end
|
||
|
_out('<hr>');
|