2013-04-11 01:07:29 -07:00
|
|
|
void main() {
|
2014-01-17 05:32:22 +00:00
|
|
|
import std.stdio, std.string, std.net.curl, std.algorithm;
|
|
|
|
|
|
2013-04-11 01:07:29 -07:00
|
|
|
foreach (line; "http://tycho.usno.navy.mil/cgi-bin/timer.pl".byLine)
|
2014-01-17 05:32:22 +00:00
|
|
|
if (line.canFind(" UTC"))
|
2013-04-11 01:07:29 -07:00
|
|
|
line[4 .. $].writeln;
|
|
|
|
|
}
|