Create

Creates a new instance of a Type

Keywords

Parameters & Returns

Parameters

This function takes no parameters.

Returns

Object

Quick Summary

Creates a new instance of a Type

Technical Exegesis...

Creates a new instance of a Type. Syntax is Create TypeName. Allocates memory for a new object of the specified Type and returns a reference to it. The new object's fields are initialized to default values (0 for numbers, empty for strings, Null for objects). The returned reference should be stored in a variable of the appropriate Type.

Example

Example.bam
; No example implemented yet