Re: New symbolic/numeric/dynamic/intuitive programming language



On Mar 15, 9:29 pm, rem6...@xxxxxxxxx (Robert Maas, see http://tinyurl.com/uh3t)
wrote:

but I haven't been able to find anything in the documentation that
tells how to get the time of day. Is there a way??

Flaming Thunder now has a function GetGreenwichMeanTime that
returns Greenwich Mean Time in standard RFC 2616 format (for
example: "Mon, 17 Mar 2008 12:50:41 GMT").

Here's a simple CGI script from
http://www.flamingthunder.com/examples
that displays the current Greenwich Mean Time:

Write "Content-type: text/html".
Write CarriageReturn, Linefeed, CarriageReturn, Linefeed.
Write "<html><body>",
GetGreenwichMeanTime(),
"</html></body>".
.