Char_new

Homepage
Wrappers

Creates a new Char object.

CharObject := Char_new(value = 0)

Parameters

value The value to initialize the Char object to.

Return Value

Address for the newly created Char object.

Remarks

If the system has insufficient memory to create the object (very rare), zero will be returned.

Related

Char_destroy

Char

Examples

;Creates a new Char initialized to 42
myChar := Char_new(42)

Homepage  |  Wrappers