xgoprev/tests/html.xgo

16 lines
188 B
Text
Raw Normal View History

2024-06-07 19:26:51 +03:00
fmt := import("fmt")
html := import("html").new_render()
fmt.println(
html.html({
lang: "en"
}).body(
html.head(),
html.body().body(
html.p().body(
">>>shit"
)
)
)
)