Procházet zdrojové kódy

Add very simple test page (created by Lua)

bel2125 před 8 roky
rodič
revize
f030c1c71e
1 změnil soubory, kde provedl 8 přidání a 0 odebrání
  1. 8 0
      test/page5.lua

+ 8 - 0
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>
+]])