blob: 18f71b320f5bb1ed9bc08e78144bf6c5db303e79 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#!/usr/bin/haserl --shell=lua
Content-type: text/html
<html>
<body>
<table border=1><tr>
<%
t = {'Red', 'Blue', 'Yellow', 'Cyan'}
for k,v in ipairs(t) do
io.write('<td bgcolor="'..v..'">'..v..'</td>')
end
%>
</tr></table>
</body>
</html>
|