Gitly
English
Русский
Español
日本語
中文
Português
Log in
Register
v2
/
vlib
/
v
/
profile
/
api.v
15
lines
·
11
sloc
·
205 bytes
·
b456752858e7ee9ad9343fe011a56cac019df2e4
Raw
1
@[has_globals]
2
module
profile
3
4
import
time as _
5
6
__global v__profile_enabled =
true
7
8
pub
fn
state() bool {
9
return
v__profile_enabled
10
}
11
12
@[
if
profile]
13
pub
fn
on(state bool) {
14
v__profile_enabled = state
15
}
16