diff options
Diffstat (limited to 'src/civetweb/test/page5.lua')
-rw-r--r-- | src/civetweb/test/page5.lua | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/civetweb/test/page5.lua b/src/civetweb/test/page5.lua new file mode 100644 index 00000000..dcf7f9f5 --- /dev/null +++ b/src/civetweb/test/page5.lua @@ -0,0 +1,8 @@ +mg.write("HTTP/1.0 200 OK\r\n")
+mg.write("Content-Type: text/html\r\n")
+mg.write("\r\n")
+mg.write([[<html><body><p>
+Hello world!
+</p>
+</body></html>
+]])
|