Float_new |
Homepage Wrappers |
Creates a new Float object.
FloatObject := Float_new(value = 0)
| value | The value to initialize the Float object to. |
If the system has insufficient memory to create the object (very rare), zero will be returned.
;Creates a new Float initialized to 0.001
myFloat := Float_new(0.001)