mumps.get_horolog()

Retrieves the current $HOROLOG value from the underlying MUMPS environment

Arguments

None.

Return Value

Returns the current $HOROLOG value.

Example

CFScript
var mumps = new lib.cfmumps.Mumps();
mumps.open();

writeOutput(mumps.get_horolog());

mumps.close();


CFML
<cfset mumps = new lib.cfmumps.Mumps()>
<cfset mumps.open()>

<cfoutput>#mumps.get_horolog()#</cfoutput>

<cfset mumps.close()>