1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

examples: fix v build-examples

This commit is contained in:
Delyan Angelov
2020-07-24 13:29:47 +03:00
parent 5acc437367
commit bfca55b87a
8 changed files with 38 additions and 39 deletions

View File

@ -46,5 +46,6 @@ fn callback(req picohttpparser.Request, mut res picohttpparser.Response) {
}
fn main() {
println('Starting webserver on http://127.0.0.1:8088/ ...')
picoev.new(8088, &callback).serve()
}