Update alltags.nim

This commit is contained in:
witer33 2021-10-18 19:15:27 +02:00 committed by GitHub
parent da123d6b6e
commit 572c804a97
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -1,6 +1,6 @@
import engine, httpclient
var html = Engine(html: newHttpClient().getContent("http://example.com"))
html.run()
var html = Engine()
html.run(newHttpClient().getContent("http://example.com"))
echo len(html.findAll(""))