mirror of
https://github.com/johnkerl/miller.git
synced 2026-01-23 02:14:13 +00:00
13 lines
344 B
Text
13 lines
344 B
Text
end {
|
|
|
|
print "---------------------------------------------------------------- TIMEZONE";
|
|
print "TZ is", ENV["TZ"];
|
|
|
|
print "---------------------------------------------------------------- SEC2GMT";
|
|
print sec2gmt(0);
|
|
print sec2gmt(0.123456);
|
|
print sec2gmt(-0.123456);
|
|
print sec2gmt(0.123456, 6);
|
|
print sec2gmt(-0.123456, 6);
|
|
|
|
}
|