v/vlib/v/checker/tests/vweb_tmpl_used_var.vv

15 lines
175 B
V

import vweb
struct App {
vweb.Context
}
pub fn (mut app App) index() vweb.Result {
test := 'test'
return $vweb.html()
}
fn main() {
vweb.run<App>(&App{}, 8181)
}