Int_new |
Homepage Wrappers |
Creates a new Int object.
IntObject := Int_new(value = 0)
| value | The value to initialize the Int object to. |
If the system has insufficient memory to create the object (very rare), zero will be returned.
;Creates a new Int initialized to 42
myInt := Int_new(42)