Now()

Returns the current date and time as a string.

NOW() Returns date and time as a string
NOW:SEC() Returns integer number of seconds since the clock
was last reset or rolled over to 0.

example:

	# Printin the date and time as a string
	>> printin Now()
	11-Jul-97 8:47:50
	# Printin the date and time in seconds
	>> printin Now:sec()
	1425508
	
Note: Use Substring() and Locate() to select time or date individually

Now

The Now() command returns out a simple time and date string. If time or date are required individually they can be chopped out of the string using the Substring() and Locate() commands to take the date before the space or the time after the space.

Parameters:

RESULT = (String or Integer)

Combined time and date string [default] or integer seconds.