Gitly
English
Русский
Español
日本語
中文
Português
Pricing
Log in
Register
v2
/
vlib
/
v
/
checker
/
tests
/
veb_context_param_mutability.vv
13
lines
·
9
sloc
·
157 bytes
·
df8cb3e94c63c266d6388b57f7a0dcea9f087f42
Raw
1
module main
2
3
import veb
4
5
pub struct Context {
6
veb.Context
7
}
8
9
pub struct App {}
10
11
pub fn (app &App) index(ctx Context) veb.Result {
12
return veb.no_result()
13
}
14