mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
16 lines
180 B
V
16 lines
180 B
V
module stats_import
|
|
|
|
pub fn get_stats_ok() int {
|
|
res := 0
|
|
#res.val = +g_test_oks
|
|
|
|
return res
|
|
}
|
|
|
|
pub fn get_stats_fail() int {
|
|
res := 0
|
|
#res.val = +g_test_fails
|
|
|
|
return res
|
|
}
|