@(foobar: String, value: String) @main("Temp") {

Hello world: @Html(value)

Hello world: @Html("

" + value + "
")

Hello world: @Html("
" + value)

Hello world: @Html(value + "
")

Hello world: @Html("

Hardcoded text
")

Hello world: @Html("

" + "Hardcoded text" + "
")

}