mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
f68d9d1a16
Fixes fail when -live user programs do not use os and time.
10 lines
95 B
V
10 lines
95 B
V
module main
|
|
|
|
import os
|
|
import time
|
|
|
|
const (
|
|
os_used = os.MAX_PATH
|
|
time_used = time.now()
|
|
)
|