diff --git a/vlib/vweb/vweb.v b/vlib/vweb/vweb.v index 96c363b0f4..aa4c89ba1c 100644 --- a/vlib/vweb/vweb.v +++ b/vlib/vweb/vweb.v @@ -70,6 +70,7 @@ $html } pub fn run(port int) { + println('Running vweb app on http://localhost:$port ...') l := net.listen(port) or { panic('failed to listen') return } for { conn := l.accept() or {