1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00
v/vlib/compiler/preludes/live_shared.v
Delyan Angelov f68d9d1a16 live: always add os and time when compiling -live programs
Fixes fail when -live user programs do not use os and time.
2019-12-09 13:48:41 +03:00

10 lines
95 B
V

module main
import os
import time
const (
os_used = os.MAX_PATH
time_used = time.now()
)