Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 2 Next »

Returns the version of MUMPS currently in use.

Arguments

mumps.mVersion() does not take any arguments.

Return Value

mumps.mVersion() returns a string representing the version of MUMPS currently in use.

Example

 

CFML
<cfset mumps = createObject("component", "lib.cfmumps.mumps").open()>
<cfset mumpsVersion = mumps.mVersion()>
<cfoutput>
<p>The version of MUMPS currently in use is #mumpsVersion#.</p>
</cfoutput>
<cfset mumps.close()>
  • No labels