16 lines
188 B
Text
16 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"
|
||
|
)
|
||
|
)
|
||
|
)
|
||
|
)
|