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

9 lines
95 B
V

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