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