RosettaCodeData/Task/System-time/V-(Vlang)/system-time.v
2023-07-01 13:44:08 -04:00

7 lines
213 B
V

import time
fn main() {
t := time.Now()
println(t) // default format YYYY-MM-DD HH:MM:SS
println(t.custom_format("ddd MMM d HH:mm:ss YYYY")) // some custom format
}