v2 / vlib / v / profile / api.v
15 lines · 11 sloc · 205 bytes · b456752858e7ee9ad9343fe011a56cac019df2e4
Raw
1@[has_globals]
2module profile
3
4import time as _
5
6__global v__profile_enabled = true
7
8pub fn state() bool {
9 return v__profile_enabled
10}
11
12@[if profile]
13pub fn on(state bool) {
14 v__profile_enabled = state
15}
16