miller/test/input/sec2localtime-tz.mlr
2021-11-11 14:15:13 -05:00

13 lines
381 B
Text

end {
print "---------------------------------------------------------------- TIMEZONE";
print "TZ is", ENV["TZ"];
print "---------------------------------------------------------------- SEC2LOCALTILME";
print sec2localtime(0);
print sec2localtime(0.123456);
print sec2localtime(-0.123456);
print sec2localtime(0.123456, 6);
print sec2localtime(-0.123456, 6);
}