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

compiler: move prelude files to tools/preludes/

This commit is contained in:
Delyan Angelov
2020-01-08 18:57:41 +02:00
committed by Alexander Medvednikov
parent 56421beb8a
commit 0d93eeb3fe
8 changed files with 38 additions and 6 deletions

View File

@@ -0,0 +1,9 @@
module main
import os
import time
const (
os_used = os.MAX_PATH
time_used = time.now()
)