|   | VariableDivision Operator  | 
        
        This stuff is still in the planning stages. Any questions or Comments are welcome. [This is preliminary documentation and is subject to change.]
            Implements the operator /.
            
 
    Namespace: 
   Furcadia.Net.Web
    Assembly:
   FurcadiaLib (in FurcadiaLib.dll) Version: 2.19.PreAlpha 59
 Syntax
Syntaxpublic static Variable operator /(
	Variable varA,
	double num
)
Public Shared Operator / ( 
	varA As Variable,
	num As Double
) As Variable
Dim varA As Variable
Dim num As Double
Dim returnValue As Variable
returnValue = (varA / num)
public:
static Variable^ operator /(
	Variable^ varA, 
	double num
)
static let inline (/)
        varA : Variable * 
        num : float  : VariableParameters
- varA
- Type: Furcadia.Net.WebVariable
 The variable a.
- num
- Type: SystemDouble
 The number.
Return Value
Type: 
Variable
            The result of the operator.
            
 See Also
See Also