blob: 38b1f0b75e2410611bac786cc96d33da5381cb8c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
<!DOCTYPE "html">
<html>
<head>
<title>@{name()}</title>
</head>
<body>
@{function()
local text = ""
for i=1,10 do
text = text .. ' ' .. tostring(i)
end
return text
end}
</body>
</html>
|