Commit cdd129446a4b35db8ed4821be2e8e890761232fe

Thomas de Grivel 2024-07-31T12:55:52

httpd: add loading message

1
2
3
4
5
6
7
8
9
10
11
12
diff --git a/lib/kc3/0.1/httpd.kc3 b/lib/kc3/0.1/httpd.kc3
index 84d24c6..a90abd7 100644
--- a/lib/kc3/0.1/httpd.kc3
+++ b/lib/kc3/0.1/httpd.kc3
@@ -1,5 +1,7 @@
 defmodule HTTPd do
 
+  puts("KC3 HTTPd loading, please wait...")
+
   def server_loop = fn (client) do
                       while true do
                         req = HTTP.Request.buf_parse(client.buf_rw.r)