mirror of
https://github.com/vlang/v.git
synced 2025-09-14 23:12:33 +03:00
9 lines
95 B
V
9 lines
95 B
V
module main
|
|
|
|
import os
|
|
import time
|
|
|
|
const (
|
|
os_used = os.MAX_PATH
|
|
time_used = time.now()
|
|
)
|