blob: e03a249d495e3452ed5c3599a58f108d325dd13a (
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,50 do
text = text .. ' ' .. tostring(i)
end
return text
end}
</body>
</html>
|