Mercurial Hosting > luan
annotate website/src/examples/hi.luan @ 604:b73f005f3735 0.13
table constructor now uses end_of_line as a delimiter
author | Franklin Schmidt <fschmidt@gmail.com> |
---|---|
date | Tue, 24 Nov 2015 16:29:27 -0700 |
parents | 7bc63886d4f2 |
children | ca169567ce07 |
rev | line source |
---|---|
382 | 1 local Io = require "luan:Io" |
494
2b9bc97f0439
change luan:web to luan:http
Franklin Schmidt <fschmidt@gmail.com>
parents:
388
diff
changeset
|
2 local Http = require "luan:http/Http" |
382 | 3 |
388 | 4 |
505
7bc63886d4f2
web page modules now return a function
Franklin Schmidt <fschmidt@gmail.com>
parents:
503
diff
changeset
|
5 return function() |
382 | 6 Io.stdout = Http.response.text_writer() |
7 %> | |
8 <html> | |
9 <body> | |
10 Hello World | |
11 </body> | |
12 </html> | |
13 <% | |
14 end |