Mercurial Hosting > luan
view website/src/pil.html.luan @ 1266:05934fbf635a
content-type "application/x-www-form-urlencoded; charset=utf-8"
author | Franklin Schmidt <fschmidt@gmail.com> |
---|---|
date | Sun, 30 Sep 2018 19:10:48 -0600 |
parents | 5dbb552075ff |
children | 1660136ac451 |
line wrap: on
line source
local Io = require "luan:Io.luan" local Http = require "luan:http/Http.luan" local Shared = require "site:/Shared.luan" return function() Io.stdout = Http.response.text_writer() %> <!doctype html> <html> <head> <title>Programming in Lua</title> <style> @import "/site.css"; </style> </head> <body> <% Shared.header() %> <h1>Programming in Lua</h1> <p>Even though <a href="http://www.lua.org/pil/">Programming in Lua</a> is about Lua, not Luan, it still serves as an excellent introduction to Luan since the languages are so close.</p> </body> </html> <% end