xgoprev/tests/html.xgo

15 lines
188 B
Text

fmt := import("fmt")
html := import("html").new_render()
fmt.println(
html.html({
lang: "en"
}).body(
html.head(),
html.body().body(
html.p().body(
">>>shit"
)
)
)
)