v2 / vlib / v / slow_tests / inout / tmpl_parse_html.vv
13 lines · 11 sloc · 161 bytes · 6a32c810703f4ec0c39fe18298ebe6c40acac8f1
Raw
1struct Website {
2 link string
3}
4
5fn abc() string {
6 title := 'TEST'
7 website := Website{'example.com'}
8 return $tmpl('file.html')
9}
10
11fn main() {
12 print(abc())
13}
14