1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

cgen: implement -profile support.

This commit is contained in:
Delyan Angelov
2020-04-25 13:05:31 +03:00
parent 41cc96aaec
commit eecf92cdb0
5 changed files with 86 additions and 14 deletions

View File

@ -0,0 +1,7 @@
module main
import time
const (
profiled_program_time_used = time.sys_mono_now()
)